diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2018-06-13 03:54:13 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2018-06-30 11:06:15 +0200 |
commit | 7e542234eb36750afc188ea878ba0e5ac09f8698 (patch) | |
tree | 7ebad63fd555f5a0bd36d0d457ab5fd298b88f7c /postprocess | |
parent | 7283125c563a2759f278c1caa6a7b71ade4f0101 (diff) |
Pattern words are the first argument for filter
https://www.gnu.org/software/make/manual/html_node/Text-Functions.html
Change-Id: I2d3ec3ab30f06b71a1f9983c0d5dc018b4307e4b
Reviewed-on: https://gerrit.libreoffice.org/55729
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/CustomTarget_registry.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index a0dfad039a6d..bc120e444939 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -353,7 +353,7 @@ else postprocess_FILES_main += $(postprocess_MOD)/org/openoffice/Office/Paths-internallibnumbertextdata.xcu endif -ifneq ($(filter $(CPUNAME),POWERPC INTEL ARM HPPA GODSON M68K SPARC S390),) +ifneq ($(filter POWERPC INTEL ARM HPPA GODSON M68K SPARC S390,$(CPUNAME)),) postprocess_FILES_main += \ $(postprocess_MOD)/org/openoffice/Office/Common-32bit.xcu endif |