From e95d6488716d6f3733e787022d26530d4161c5ca Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 26 Feb 2002 18:00:29 +0000 Subject: [PATCH] Work with a mkinstalldirs that is not +x. --- gnu/dist/gettext/intl/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/dist/gettext/intl/Makefile.in b/gnu/dist/gettext/intl/Makefile.in index 4bdb186d2abd..a1d0f63ca197 100644 --- a/gnu/dist/gettext/intl/Makefile.in +++ b/gnu/dist/gettext/intl/Makefile.in @@ -113,10 +113,10 @@ install: install-exec install-data install-exec: all if test "$(PACKAGE)" = "gettext" \ && test '@INTLOBJS@' = '$(GETTOBJS)'; then \ - if test -r $(MKINSTALLDIRS); then \ + if test -x $(MKINSTALLDIRS); then \ $(MKINSTALLDIRS) $(libdir) $(includedir); \ else \ - $(top_srcdir)/mkinstalldirs $(libdir) $(includedir); \ + $(SHELL) $(top_srcdir)/mkinstalldirs $(libdir) $(includedir); \ fi; \ $(INSTALL_DATA) intlh.inst $(includedir)/libintl.h; \ $(INSTALL_DATA) libintl.a $(libdir)/libintl.a; \ @@ -125,10 +125,10 @@ install-exec: all fi install-data: all if test "$(PACKAGE)" = "gettext"; then \ - if test -r $(MKINSTALLDIRS); then \ + if test -x $(MKINSTALLDIRS); then \ $(MKINSTALLDIRS) $(gettextsrcdir); \ else \ - $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \ + $(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \ fi; \ $(INSTALL_DATA) VERSION $(gettextsrcdir)/VERSION; \ dists="$(DISTFILES.common)"; \