diff options
author | tron <tron@pkgsrc.org> | 1998-11-10 22:39:29 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1998-11-10 22:39:29 +0000 |
commit | cd1a76f8f876eb31f4eab3c189efd8bcf54915ce (patch) | |
tree | ff37632a0f5ebec5b132eff1eedc02fb1e0806eb /misc/rpm | |
parent | 37df7420e56d6a5ab4b5dcd8d335ce7a6b813ed5 (diff) | |
download | pkgsrc-cd1a76f8f876eb31f4eab3c189efd8bcf54915ce.tar.gz |
Fix installation for NetBSD 1.3.x.
Diffstat (limited to 'misc/rpm')
-rw-r--r-- | misc/rpm/patches/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/rpm/patches/patch-aa b/misc/rpm/patches/patch-aa new file mode 100644 index 00000000000..efc931b686e --- /dev/null +++ b/misc/rpm/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.6 1998/11/10 22:39:29 tron Exp $ + +--- po/Makefile.in.orig Mon Sep 28 22:13:27 1998 ++++ po/Makefile.in Tue Nov 10 23:07:35 1998 +@@ -79,8 +79,8 @@ + install: + for n in $(CATALOGS); do \ + l=`basename $$n .mo`; \ +- $(INSTALL) -m 755 -d $(installprefix)/$(RPMNLSDIR)/$$l; \ +- $(INSTALL) -m 755 -d $(installprefix)/$(RPMNLSDIR)/$$l/LC_MESSAGES; \ ++ $(BSD_INSTALL_DATA_DIR) -m 755 $(installprefix)/$(RPMNLSDIR)/$$l; \ ++ $(BSD_INSTALL_DATA_DIR) -m 755 $(installprefix)/$(RPMNLSDIR)/$$l/LC_MESSAGES; \ + $(INSTALL) -m 644 $$n $(installprefix)/$(RPMNLSDIR)/$$l/LC_MESSAGES/rpm.mo; \ + done + |