diff options
author | tamland <thomas.amland@gmail.com> | 2015-04-18 13:18:53 +0200 |
---|---|---|
committer | tamland <thomas.amland@gmail.com> | 2015-04-18 13:18:53 +0200 |
commit | 456eade6c52b7fe60aa5778d144d4eb396697a36 (patch) | |
tree | 3164b4a339afc8d13bdcb0ac309c173c95003dc0 /Makefile.in | |
parent | d81fd7161a5bb3f481be71d6c4c3dcc00dbd6bf4 (diff) | |
parent | 78de2fdacfd3e94ba12fa6da78a7da219239070c (diff) |
Merge pull request #6557 from tamland/uisound_addons
UI sounds addons
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 0bacce0172..1374ce80f5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -571,7 +571,7 @@ install-datas: install-scripts @install -d $(DESTDIR)$(datarootdir)/@APP_NAME_LC@ @# Arch independent files ifeq ($(findstring bsd,@ARCH@), bsd) - @find -E addons media sounds userdata system -type f \ + @find -E addons media userdata system -type f \ -not -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs|.*\.git.*|.*\.so|.*\.so\.[0-9].*|.*\.dll|$(subst ${space},|,$(INSTALL_FILTER))" \ -exec sh -c "install -d \"$(DESTDIR)$(datarootdir)/@APP_NAME_LC@/\`dirname '{}'\`\"" \; \ -and \ @@ -579,14 +579,14 @@ ifeq ($(findstring bsd,@ARCH@), bsd) -exec printf " -- %-75.75s\r" "{}" \; else ifeq ($(findstring Darwin,$(shell uname -s)),Darwin) - @find -E addons media sounds userdata system -type f \ + @find -E addons media userdata system -type f \ -not -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs|.*\.git.*|.*\.so|.*\.so\.[0-9].*|.*\.dll|$(subst ${space},|,$(INSTALL_FILTER))" \ -exec sh -c "install -d \"$(DESTDIR)$(datarootdir)/xbmc/\`dirname '{}'\`\"" \; \ -and \ -exec install -m 0644 "{}" $(DESTDIR)$(datarootdir)/xbmc/"{}" \; \ -exec printf " -- %-75.75s\r" "{}" \; else - @find addons media sounds userdata system -regextype posix-extended -type f -not -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs|.*\.git.*|.*\.so|.*\.so\.[0-9].*|.*\.dll|$(subst ${space},|,$(INSTALL_FILTER))" -exec install -D -m 0644 "{}" $(DESTDIR)$(datarootdir)/@APP_NAME_LC@/"{}" \; -printf " -- %-75.75f\r" + @find addons media userdata system -regextype posix-extended -type f -not -iregex ".*@ARCH@.*|.*\.vis|.*\.xbs|.*\.git.*|.*\.so|.*\.so\.[0-9].*|.*\.dll|$(subst ${space},|,$(INSTALL_FILTER))" -exec install -D -m 0644 "{}" $(DESTDIR)$(datarootdir)/@APP_NAME_LC@/"{}" \; -printf " -- %-75.75f\r" endif endif @# Icons and links |