From a205d6e9bd1ec5237f9c08c77bcba0c32e8865e8 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 27 Jan 2012 21:30:19 +0000 Subject: embed the included languages into the Info.plist to enable per-app language selection svn path=/trunk/; revision=15894 --- packages/darwin_app/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'packages/darwin_app/Makefile') diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile index a05b7e99..92609bb3 100644 --- a/packages/darwin_app/Makefile +++ b/packages/darwin_app/Makefile @@ -130,11 +130,13 @@ endif # NOT /System #------------------------------------------------------------------------------# # generate Info.plist using PD_APP_NAME and PD_VERSION Info.plist: CFBUNDLEVERSION_DATE := $(shell date +%Y.%m.%d) +Info.plist: CFBUNDLELOCALIZATIONS := $(shell $(packages_src)/darwin_app/embed-languages-in-info-list.py $(pd_src)/po/Makefile.am) Info.plist: Info.plist.in cat Info.plist.in | \ sed 's/PD_APP_NAME/$(PD_APP_NAME)/' | \ sed 's/CFBUNDLESHORTVERSIONSTRING/$(PD_MAJOR_VERSION).$(PD_MINOR_VERSION).$(PD_BUGFIX_VERSION)/' | \ - sed 's/CFBUNDLEVERSION/$(CFBUNDLEVERSION_DATE)/' > \ + sed 's/CFBUNDLEVERSION/$(CFBUNDLEVERSION_DATE)/' | \ + sed 's|CFBUNDLELOCALIZATIONS|$(CFBUNDLELOCALIZATIONS)|' > \ Info.plist spotlight_importer_install: -- cgit v1.2.1