From fc421d4a1f59c2c4ebc7f3a0366bf739877e812d Mon Sep 17 00:00:00 2001 From: jbj Date: Fri, 22 Jan 1999 00:34:30 +0000 Subject: [PATCH] use portable mkinstalldirs (Tim Mooney). CVS patchset: 2736 CVS date: 1999/01/22 00:34:30 --- CHANGES | 1 + po/Makefile.in.in | 4 ++-- popt/po/Makefile.in.in | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 9120612..5f3642e 100644 --- a/CHANGES +++ b/CHANGES @@ -46,6 +46,7 @@ - there must be a { between two % in a query format (unless %% is used) 2.5.6 -> 2.5.7: + - use portable mkinstalldirs (Tim Mooney). - irix6 autodeps were dup'd (Shing-Gene Yung ). - getservbyname needed ntohs(). - propagate "const char *" into rpmlib prototypes. diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 65ef6fb..919feb8 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -54,8 +54,8 @@ depend: install: for n in $(CATALOGS); do \ l=`basename $$n .mo`; \ - $(INSTALL) -m 755 -d $(installprefix)/$(LOCALEDIR)/$$l; \ - $(INSTALL) -m 755 -d $(installprefix)/$(LOCALEDIR)/$$l/LC_MESSAGES; \ + $(top_srcdir)/mkinstalldirs \ + $(installprefix)/$(LOCALEDIR)/$$l/LC_MESSAGES; \ $(INSTALL) -m 644 $$n $(installprefix)/$(LOCALEDIR)/$$l/LC_MESSAGES/rpm.mo; \ done diff --git a/popt/po/Makefile.in.in b/popt/po/Makefile.in.in index 3ac0cc6..3a1c44c 100644 --- a/popt/po/Makefile.in.in +++ b/popt/po/Makefile.in.in @@ -54,8 +54,8 @@ depend: install: for n in $(CATALOGS); do \ l=`basename $$n .mo`; \ - $(INSTALL) -m 755 -d $(installprefix)/$(LOCALEDIR)/$$l; \ - $(INSTALL) -m 755 -d $(installprefix)/$(LOCALEDIR)/$$l/LC_MESSAGES; \ + $(top_srcdir)/mkinstalldirs \ + $(installprefix)/$(LOCALEDIR)/$$l/LC_MESSAGES; \ $(INSTALL) -m 644 $$n $(installprefix)/$(LOCALEDIR)/$$l/LC_MESSAGES/popt.mo; \ done -- 2.7.4