diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2012-07-11 00:10:00 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-08 19:14:48 -0400 |
commit | 59d4659f6ae57669d4cb2dc36436ed1fe5fcbfe4 (patch) | |
tree | 0df069f6d26c34d9156e6ca10c176b6e65bcb621 /Makefile.in | |
parent | 6920dc8c47b4da10b8fb070b903d55927fcb2753 (diff) |
[droid] install libxbmc.so properly
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index ab2c0c01db..b2ab93a707 100755 --- a/Makefile.in +++ b/Makefile.in @@ -426,15 +426,15 @@ else install: install-binaries install-arch install-datas install-binaries: install-scripts - @echo "Copying XBMC binary to $(DESTDIR)$(libdir)/xbmc/xbmc.bin" + @echo "Copying XBMC binary to $(DESTDIR)$(libdir)/xbmc/" @install -d $(DESTDIR)$(libdir)/xbmc - @install xbmc.bin $(DESTDIR)$(libdir)/xbmc/xbmc.bin ifeq (1,@USE_XRANDR@) @install xbmc-xrandr $(DESTDIR)$(libdir)/xbmc/xbmc-xrandr endif ifeq (@USE_LIBXBMC@,1) @install libxbmc.so $(DESTDIR)$(libdir)/xbmc/libxbmc.so else + @install xbmc.bin $(DESTDIR)$(libdir)/xbmc/xbmc.bin @echo "You can run XBMC with the command 'xbmc'" endif endif |