diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-23 09:51:00 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-23 09:51:00 +0000 |
commit | 083c4ebc8ff21321a5613ca78ddbd43f8a34464c (patch) | |
tree | eb0d39e67f11bab50141700fc12d71b20adbcb4e | |
parent | f19454b666cfc6ff72bf360eea1133a4ad7654c8 (diff) |
INTEGRATION: CWS pj23 (1.6.8); FILE MERGED
2005/03/22 20:23:41 pjanik 1.6.8.1: #i45676#: Allow building in parallel.
Patch contributed by kendy (Jan Holesovsky), JCA.
-rw-r--r-- | i18npool/source/breakiterator/makefile.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/source/breakiterator/makefile.mk b/i18npool/source/breakiterator/makefile.mk index a86d0510af3b..06da91dc202f 100644 --- a/i18npool/source/breakiterator/makefile.mk +++ b/i18npool/source/breakiterator/makefile.mk @@ -2,9 +2,9 @@ #* #* $RCSfile: makefile.mk,v $ #* -#* $Revision: 1.6 $ +#* $Revision: 1.7 $ #* -#* last change: $Author: vg $ $Date: 2005-02-25 10:08:26 $ +#* last change: $Author: vg $ $Date: 2005-03-23 10:51:00 $ #* #* The Contents of this file are made available subject to the terms of #* either of the following licenses @@ -74,13 +74,13 @@ ENABLE_EXCEPTIONS=TRUE # --- Files -------------------------------------------------------- # grab all .txt files under data directory, which are breakiterator rule files. -MY_BRK_TXTFILES=$(shell ls data/*.txt) +MY_BRK_TXTFILES:=$(shell ls data/*.txt) # insert "OpenOffice" as icu package name in front of the name of each rule file for searching on application provided data -MY_BRK_BRKFILES=$(subst,data/,$(MISC)$/OpenOffice_ $(MY_BRK_TXTFILES:s/.txt/.brk/)) +MY_BRK_BRKFILES:=$(subst,data/,$(MISC)$/OpenOffice_ $(MY_BRK_TXTFILES:s/.txt/.brk/)) # OpenOffice_icu_dat.c is a generated file from the rule file list by gencmn -MY_MISC_CXXFILES = \ +MY_MISC_CXXFILES := \ $(MISC)$/OpenOffice_icu_dat.c \ $(MY_BRK_BRKFILES:s/.brk/_brk.c/) |