diff options
author | rillig <rillig> | 2007-02-15 14:33:56 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-02-15 14:33:56 +0000 |
commit | 3dd7ff84bc6e6fa96536a3e84917146849821143 (patch) | |
tree | 55872aa3705fbacc8d5c2fb298df46cccdf015d3 /lang | |
parent | f307bb1075cdec8f97a5c830fb537bf3177709a5 (diff) | |
download | pkgsrc-3dd7ff84bc6e6fa96536a3e84917146849821143.tar.gz |
Fixed the installation for unprivileged users.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/caml-light/distinfo | 3 | ||||
-rw-r--r-- | lang/caml-light/patches/patch-ab | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/lang/caml-light/distinfo b/lang/caml-light/distinfo index 2ef891dabce..a6eca5b9f47 100644 --- a/lang/caml-light/distinfo +++ b/lang/caml-light/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.4 2005/02/24 09:03:05 agc Exp $ +$NetBSD: distinfo,v 1.5 2007/02/15 14:33:56 rillig Exp $ SHA1 (cl74unix.tar.gz) = feae4a53af78b6c500a03c618dc11444e8b5dc47 RMD160 (cl74unix.tar.gz) = a00a8de15e042080041076fcf3ad2592d9deb469 Size (cl74unix.tar.gz) = 999170 bytes SHA1 (patch-aa) = e9a564183d445a61c00e0f6e134dee9029856bea +SHA1 (patch-ab) = de97223ec671c8b04313c80fe4275c7ade087030 diff --git a/lang/caml-light/patches/patch-ab b/lang/caml-light/patches/patch-ab new file mode 100644 index 00000000000..addf43abdb7 --- /dev/null +++ b/lang/caml-light/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2007/02/15 14:34:09 rillig Exp $ + +cp(1) cannot overwrite read-only files. + +--- lib/Makefile.orig 1997-11-12 17:49:46.000000000 +0100 ++++ lib/Makefile 2007-01-18 21:05:00.000000000 +0100 +@@ -31,7 +31,7 @@ clean: + rm -f filename.ml genlex.ml + + install: +- cp stdlib.zo *.zi *.zix *.mli *.ml $(LIBDIR) ++ pax -wr stdlib.zo *.zi *.zix *.mli *.ml $(LIBDIR) + rm $(LIBDIR)/iparsing.mli + + .SUFFIXES : |