Commit 58a81baa authored by Peter Eisentraut's avatar Peter Eisentraut

More portable use of "find".

parent 26dc14b6
# $PostgreSQL: pgsql/src/nls-global.mk,v 1.17 2009/01/09 10:54:08 petere Exp $ # $PostgreSQL: pgsql/src/nls-global.mk,v 1.18 2009/01/09 12:37:37 petere Exp $
# Common rules for Native Language Support (NLS) # Common rules for Native Language Support (NLS)
# #
...@@ -96,8 +96,8 @@ init-po: po/$(CATALOG_NAME).pot ...@@ -96,8 +96,8 @@ init-po: po/$(CATALOG_NAME).pot
# For performance reasons, only calculate these when the user actually # For performance reasons, only calculate these when the user actually
# requested update-po or a specific file. # requested update-po or a specific file.
ifneq (,$(filter update-po %.po.new,$(MAKECMDGOALS))) ifneq (,$(filter update-po %.po.new,$(MAKECMDGOALS)))
ALL_LANGUAGES := $(shell find $(top_srcdir) -name '*.po' -printf '%f\n' | sort -u | sed 's/\.po$$//') ALL_LANGUAGES := $(shell find $(top_srcdir) -name '*.po' -print | sed 's,^.*/\([^/]*\).po$$,\1,' | sort -u)
all_compendia := $(shell find $(top_srcdir) -name '*.po' -printf '%p ') all_compendia := $(shell find $(top_srcdir) -name '*.po' -print)
else else
ALL_LANGUAGES = $(AVAIL_LANGUAGES) ALL_LANGUAGES = $(AVAIL_LANGUAGES)
all_compendia = FORCE all_compendia = FORCE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment