diff options
author | jlam <jlam@pkgsrc.org> | 2003-01-29 10:58:50 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-01-29 10:58:50 +0000 |
commit | c27ad75f8246187943c67e5a24c4ccadec321dff (patch) | |
tree | c8ac65e08a9894aa627cd1fcfb497fb70a44997d /lang/kaffe/patches | |
parent | 5adda97c9783a36631e80af62fd718b23f273f98 (diff) | |
download | pkgsrc-c27ad75f8246187943c67e5a24c4ccadec321dff.tar.gz |
Note that some of the installed files are config files and use
bsd.pkg.install.mk to handle the file copying and directory handling.
Bump PKGREVISION of lang/kaffe to 1.
Diffstat (limited to 'lang/kaffe/patches')
-rw-r--r-- | lang/kaffe/patches/patch-ac | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lang/kaffe/patches/patch-ac b/lang/kaffe/patches/patch-ac new file mode 100644 index 00000000000..87e9cdbf400 --- /dev/null +++ b/lang/kaffe/patches/patch-ac @@ -0,0 +1,28 @@ +$NetBSD: patch-ac,v 1.3 2003/01/29 10:58:51 jlam Exp $ + +--- libraries/clib/security/Makefile.in.orig Wed Jan 29 02:57:21 2003 ++++ libraries/clib/security/Makefile.in +@@ -268,18 +268,18 @@ install-securityDATA: $(security_DATA) + $(mkinstalldirs) $(DESTDIR)$(securitydir) + @list='$(security_DATA)'; for p in $$list; do \ + if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(securitydir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(securitydir)/$$p; \ ++ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(securitydir)/$$p.default"; \ ++ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(securitydir)/$$p.default; \ + else if test -f $$p; then \ +- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(securitydir)/$$p"; \ +- $(INSTALL_DATA) $$p $(DESTDIR)$(securitydir)/$$p; \ ++ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(securitydir)/$$p.default"; \ ++ $(INSTALL_DATA) $$p $(DESTDIR)$(securitydir)/$$p.default; \ + fi; fi; \ + done + + uninstall-securityDATA: + @$(NORMAL_UNINSTALL) + list='$(security_DATA)'; for p in $$list; do \ +- rm -f $(DESTDIR)$(securitydir)/$$p; \ ++ rm -f $(DESTDIR)$(securitydir)/$$p.default; \ + done + + tags: TAGS |