diff options
author | tron <tron> | 2004-04-22 09:18:34 +0000 |
---|---|---|
committer | tron <tron> | 2004-04-22 09:18:34 +0000 |
commit | d730e797ceb41d3c65f5f93175e749aab7304d0d (patch) | |
tree | 59672b97d93cb0901c01e1fad17ba3b32b924095 /lang/ocaml/patches/patch-ar | |
parent | db00d969c5c33ff82e28c6ea5d129a47e9b364fa (diff) | |
download | pkgsrc-d730e797ceb41d3c65f5f93175e749aab7304d0d.tar.gz |
Fix various issues with this package:
- split patches files
- always enable threading which has various advantages
- it fixes the build of the Tk library
- it greatly simplifies the package list handling
- it provides threading support under NetBSD 1.6/1.6.x
- correct default dependence in "buildlink2.mk" to "build"
Bump package revision because of all these changes.
Diffstat (limited to 'lang/ocaml/patches/patch-ar')
-rw-r--r-- | lang/ocaml/patches/patch-ar | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lang/ocaml/patches/patch-ar b/lang/ocaml/patches/patch-ar new file mode 100644 index 00000000000..6bbe7ad9fe6 --- /dev/null +++ b/lang/ocaml/patches/patch-ar @@ -0,0 +1,16 @@ +$NetBSD: patch-ar,v 1.1 2004/04/22 09:18:38 tron Exp $ + +--- camlp4/top/Makefile.orig Fri Jul 19 16:53:56 2002 ++++ camlp4/top/Makefile Thu Apr 22 10:34:37 2004 +@@ -42,7 +42,9 @@ + get_promote: + + install: +- -$(MKDIR) $(LIBDIR)/camlp4 +- cp $(TARGET) $(LIBDIR)/camlp4/. ++ -${BSD_INSTALL_DATA_DIR} $(LIBDIR)/camlp4 ++ for i in $(TARGET); do \ ++ ${BSD_INSTALL_DATA} $$i $(LIBDIR)/camlp4/ ; \ ++ done + + include .depend |