diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-08-25 10:34:09 +0200 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-09-03 10:34:02 -0700 |
| commit | ecdf024dce2e7454458ce339458b6a9e2837f7f5 (patch) | |
| tree | 944120527bfc074d44ecb8281880802d486a2b4d | |
| parent | 6d60af317b121114973c01954906b4713799496e (diff) | |
| download | uClibc-alpine-ecdf024dce2e7454458ce339458b6a9e2837f7f5.tar.bz2 uClibc-alpine-ecdf024dce2e7454458ce339458b6a9e2837f7f5.tar.xz | |
use CURDIR
use CURDIR instead of spawning a separate shell as suggested by
Mike.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
| -rw-r--r-- | extra/locale/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extra/locale/Makefile.in b/extra/locale/Makefile.in index 4902ce14d..fe2e3cfd8 100644 --- a/extra/locale/Makefile.in +++ b/extra/locale/Makefile.in @@ -80,7 +80,7 @@ $(locale_OUT)/codesets.txt: echo " "; \ echo "You do not have a codesets.txt file. Please create this "; \ echo "file in the $(locale_OUT) directory by running something like: "; \ - echo " find $(shell pwd)/$(locale_DIR)/charmaps -name \"*.pairs\" > \\"; \ + echo " find $(CURDIR)/$(locale_DIR)/charmaps -name \"*.pairs\" > \\"; \ echo " $@"; \ echo "and then edit that file to disable/enable the codesets you wish to support. "; \ echo " "; \ @@ -107,13 +107,13 @@ else $(locale_OUT)/codesets.txt: @$(disp_gen) ifeq ($(UCLIBC_BUILD_MINIMAL_LOCALE),y) - $(Q)echo "$(shell pwd)/$(locale_DIR)/charmaps/ASCII.pairs" > $@ ; \ - $(Q)echo "$(shell pwd)/$(locale_DIR)/charmaps/ISO-8859-1.pairs" >> $@ + $(Q)echo "$(CURDIR)/$(locale_DIR)/charmaps/ASCII.pairs" > $@ ; \ + $(Q)echo "$(CURDIR)/$(locale_DIR)/charmaps/ISO-8859-1.pairs" >> $@ else $(Q)set -e; \ tmp=`mktemp $@.XXXXXX 2>/dev/null || true`; \ [ -z "$$tmp" ] && tmp='$@.new'; \ - find $(shell pwd)/$(locale_DIR)/charmaps/ -name '*.pairs' | \ + find $(CURDIR)/$(locale_DIR)/charmaps/ -name '*.pairs' | \ sort > $$tmp; \ [ -s $$tmp ]; \ if cmp $@ $$tmp >/dev/null 2>&1; then \ |
