From bd0f5ba60d257ca1c90aede44d56acf764f4ebd2 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Fri, 23 Sep 2005 09:08:47 +0200 Subject: [PATCH] We call $(mkinstalldirs) $(MKINSTALLDIRS) Should fix make install. --- po/Makefile | 4 ++-- src/intl/gettext/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/po/Makefile b/po/Makefile index 285bb90d5..ec0074d16 100644 --- a/po/Makefile +++ b/po/Makefile @@ -109,13 +109,13 @@ check-po: install-l: install-l-$(CONFIG_NLS) install-l-no: install-l-yes: - $(mkinstalldirs) $(DESTDIR)$(localedir) + $(MKINSTALLDIRS) $(DESTDIR)$(localedir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ - $(mkinstalldirs) $(DESTDIR)$$dir; \ + $(MKINSTALLDIRS) $(DESTDIR)$$dir; \ if test -r $(srcdir)/$$cat; then \ $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \ echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \ diff --git a/src/intl/gettext/Makefile b/src/intl/gettext/Makefile index ab9659e7f..260b0842e 100644 --- a/src/intl/gettext/Makefile +++ b/src/intl/gettext/Makefile @@ -52,14 +52,14 @@ install-l: $(builddir)/charset.alias all rm -f $$temp; \ else \ if test @GLIBC21@ = no; then \ - $(mkinstalldirs) $(DESTDIR)$(libdir); \ + $(MKINSTALLDIRS) $(DESTDIR)$(libdir); \ orig=charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ fi; \ fi; \ - $(mkinstalldirs) $(DESTDIR)$(localedir); \ + $(MKINSTALLDIRS) $(DESTDIR)$(localedir); \ test -f $(DESTDIR)$(localedir)/locale.alias \ && orig=$(DESTDIR)$(localedir)/locale.alias \ || orig=$(srcdir)/locale.alias; \