diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2024-12-01 17:00:51 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2024-12-18 20:26:02 +0100 |
commit | 2ddb4fee047c49bac1d831ee8320fb4662b21b4c (patch) | |
tree | cf9ecb97109045a2fe9bae6665d320aea9da2456 | |
parent | 52e7213d94a3e9baac36adc115124c4791baf15b (diff) |
mac: don't try to strip Contents/Frameworks/intl directory
the intl data for firebird has been added with
07cc2fdc3d447479ca3afd2f91c9bc80be745dff (and the associated config file
later moved to Resources with dfa78d2eac7632c93d1e76e52c9d46050dd932a2)
Change-Id: I4fe666076c42bae21b371fe0ea9495ebc915bd21
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177617
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
(cherry picked from commit 16652e55f916025d42ca18b95934e67edd878de0)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177622
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 977e70da615e..89b75a5447ba 100644 --- a/Makefile.in +++ b/Makefile.in @@ -436,8 +436,8 @@ $(BUILDDIR)/$(PLATFORMID)/done: test-install mkdir -p $(PLATFORMID)/Symbols mv $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app $(PLATFORMID)/"$(PRODUCTNAME)".app ifneq ($(ENABLE_SYMBOLS_FOR),) - symbols -arch all -symbolsPackageDir $(PLATFORMID)/Symbols $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/[^L]* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/MacOS/* - strip -S $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/[^L]* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/MacOS/* + symbols -arch all -symbolsPackageDir $(PLATFORMID)/Symbols $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/[^Li]* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/intl/l* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/MacOS/* + strip -S $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/[^Li]* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/intl/l* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/MacOS/* endif touch $@ |