diff options
author | montellese <montellese@xbmc.org> | 2014-10-23 00:17:10 +0200 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2015-03-06 08:00:59 +0100 |
commit | 0b44cb74d1232a662d07cfe45eb4c80c800ffc15 (patch) | |
tree | b94c0d77096f377d9ee1d5c14a462e338874cc2f /Makefile.in | |
parent | ad8e5cad5c16d25fddd4452a4dc2afc510e61739 (diff) |
no need to install the language directory anymore
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 a64b192bb4..1624ff7491 100644 --- a/Makefile.in +++ b/Makefile.in @@ -612,7 +612,7 @@ install-datas: install-scripts @install -d $(DESTDIR)$(datarootdir)/@APP_NAME_LC@ @# Arch independent files ifeq ($(findstring bsd,@ARCH@), bsd) - @find -E addons language media sounds userdata system -type f \ + @find -E addons media sounds 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 \ @@ -620,14 +620,14 @@ ifeq ($(findstring bsd,@ARCH@), bsd) -exec printf " -- %-75.75s\r" "{}" \; else ifeq ($(findstring Darwin,$(shell uname -s)),Darwin) - @find -E addons language media sounds userdata system -type f \ + @find -E addons media sounds 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 language 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 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" endif endif @# Icons and links |