summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authortv <tv@NetBSD.org>2002-02-26 18:00:29 +0000
committertv <tv@NetBSD.org>2002-02-26 18:00:29 +0000
commite95d6488716d6f3733e787022d26530d4161c5ca (patch)
treec2bb9048a10984f309dc90d9ce281af414a0c5a5 /gnu
parent853b3d3c1aaa7c8802de819aa3df4d3f79b1f1c9 (diff)
Work with a mkinstalldirs that is not +x.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/dist/gettext/intl/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/dist/gettext/intl/Makefile.in b/gnu/dist/gettext/intl/Makefile.in
index 4bdb186d2ab..a1d0f63ca19 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)"; \