diff options
author | ceros7 <ceros7@svn> | 2010-05-10 06:46:54 +0000 |
---|---|---|
committer | ceros7 <ceros7@svn> | 2010-05-10 06:46:54 +0000 |
commit | f7620d55d8cf200d2fb165345933d633afb5ca90 (patch) | |
tree | 91fca2769bb351716a2dfc1efd6f84c02241416b /Makefile.in | |
parent | 6f8cc25534da47da7d5c5e6ac406c3e97cc46648 (diff) |
Remove system/libcpluff-$(ARCH).so during distclean and set binaries to not go into datarootdir.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29975 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 78ca6f3eb6..6edf702a18 100644 --- a/Makefile.in +++ b/Makefile.in @@ -137,7 +137,8 @@ DISTCLEAN_FILES=config.h config.log config.status tools/Linux/xbmc.sh \ autom4te.cache config.h.in~ \ xbmc/lib/libPython/Python/Include/pyconfig.h \ xbmc/lib/libPython/Python/configure.lineno \ - xbmc/lib/libPython/Python/libpython2.4.so.1.0 + xbmc/lib/libPython/Python/libpython2.4.so.1.0 \ + system/libcpluff-$(ARCH).so all : Makefile externals xbmc.bin xbmc-xrandr skins @@ -520,7 +521,7 @@ install-datas: install-scripts @echo "Done!" @echo "Copying system files to $(DESTDIR)$(datarootdir)/xbmc" @# Arch independent files - @find addons language media scripts sounds userdata system -regextype posix-extended -type f -not -iregex ".*svn.*|.*\.so|.*\.dll|.*\.pyd|.*python/.*\.zlib" -exec install -D -m 0644 "{}" $(DESTDIR)$(datarootdir)/xbmc/"{}" \; -printf " -- %-75.75f\r" + @find addons language media scripts sounds userdata system -regextype posix-extended -type f -not -iregex ".*$(ARCH).*|.*\.vis|.*\.xbs|.*svn.*|.*\.so|.*\.dll|.*\.pyd|.*python/.*\.zlib" -exec install -D -m 0644 "{}" $(DESTDIR)$(datarootdir)/xbmc/"{}" \; -printf " -- %-75.75f\r" @# Icons and links @mkdir -p $(DESTDIR)$(datarootdir)/applications $(DESTDIR)$(datarootdir)/pixmaps @cp -a tools/Linux/xbmc.png $(DESTDIR)$(datarootdir)/pixmaps/ |