summaryrefslogtreecommitdiffstats
path: root/gettext-tools/examples/hello-perl/po
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2006-04-22 14:16:31 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:13:11 +0200
commitebdacfb2d0f5e376ca1e03005d924b5f99e139bd (patch)
treedcb5e308cc0e1180d13a5c282d4e7e6b75ebf361 /gettext-tools/examples/hello-perl/po
parentc517d1cdf263cb7c84e5d759a33d0d5dbef48a51 (diff)
downloadexternal_gettext-ebdacfb2d0f5e376ca1e03005d924b5f99e139bd.zip
external_gettext-ebdacfb2d0f5e376ca1e03005d924b5f99e139bd.tar.gz
external_gettext-ebdacfb2d0f5e376ca1e03005d924b5f99e139bd.tar.bz2
Stop using the mkinstalldirs script.
Diffstat (limited to 'gettext-tools/examples/hello-perl/po')
-rw-r--r--gettext-tools/examples/hello-perl/po/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-tools/examples/hello-perl/po/Makefile.am b/gettext-tools/examples/hello-perl/po/Makefile.am
index 0881bc3..831a7f3 100644
--- a/gettext-tools/examples/hello-perl/po/Makefile.am
+++ b/gettext-tools/examples/hello-perl/po/Makefile.am
@@ -175,13 +175,13 @@ $(POFILES): $(srcdir)/$(DOMAIN).pot
install-data-local: install-data-local-@USE_NLS@
install-data-local-no: all-local
install-data-local-yes: all-local
- $(mkinstalldirs) $(DESTDIR)$(datadir)
+ $(mkdir_p) $(DESTDIR)$(datadir)
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
dir=$(localedir)/$$lang/LC_MESSAGES; \
- $(mkinstalldirs) $(DESTDIR)$$dir; \
+ $(mkdir_p) $(DESTDIR)$$dir; \
if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \
$(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \
echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \
@@ -218,13 +218,13 @@ install-data-local-yes: all-local
installdirs-local: installdirs-local-@USE_NLS@
installdirs-local-no:
installdirs-local-yes:
- $(mkinstalldirs) $(DESTDIR)$(datadir)
+ $(mkdir_p) $(DESTDIR)$(datadir)
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
dir=$(localedir)/$$lang/LC_MESSAGES; \
- $(mkinstalldirs) $(DESTDIR)$$dir; \
+ $(mkdir_p) $(DESTDIR)$$dir; \
for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
if test -n "$$lc"; then \
if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \