CMUCL commit: intl-branch src/lisp (GNUmakefile)
Raymond Toy
rtoy at common-lisp.net
Fri Feb 12 23:21:23 CET 2010
Date: Friday, February 12, 2010 @ 17:21:23
Author: rtoy
Path: /project/cmucl/cvsroot/src/lisp
Tag: intl-branch
Modified: GNUmakefile
Solaris' find doesn't like -depth 1, so just hardwire the current
locale directories.
-------------+
GNUmakefile | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
Index: src/lisp/GNUmakefile
diff -u src/lisp/GNUmakefile:1.33.14.2 src/lisp/GNUmakefile:1.33.14.3
--- src/lisp/GNUmakefile:1.33.14.2 Fri Feb 12 10:01:23 2010
+++ src/lisp/GNUmakefile Fri Feb 12 17:21:23 2010
@@ -1,4 +1,4 @@
-# $Header: /project/cmucl/cvsroot/src/lisp/GNUmakefile,v 1.33.14.2 2010-02-12 15:01:23 rtoy Exp $
+# $Header: /project/cmucl/cvsroot/src/lisp/GNUmakefile,v 1.33.14.3 2010-02-12 22:21:23 rtoy Exp $
all: lisp.nm translations
@@ -63,7 +63,10 @@
# Find all directories in ../i18n/locale. These are the locales we
# currently support.
-LOCALES=$(patsubst ../i18n/locale/%, %, $(shell find ../i18n/locale -type d -depth 1))
+# This would be a nice way to do it so we don't have to keep track of
+# the directories, but Solaris' find doesn't grok -depth 1
+#LOCALES=$(patsubst ../i18n/locale/%, %, $(shell find ../i18n/locale -type d -depth 1))
+LOCALES=en at piglatin ko
# Convert locale names to the appropriate path where we want the mo files to go.
LOCALE_MO=$(patsubst %, ../i18n/locale/%/LC_MESSAGES/cmucl.mo, $(LOCALES))
More information about the cmucl-commit
mailing list