diff options
author | rh <rh> | 2001-01-11 10:56:33 +0000 |
---|---|---|
committer | rh <rh> | 2001-01-11 10:56:33 +0000 |
commit | a2a631d4ecd0ddb62211f2f1a76c8e913dcdafc4 (patch) | |
tree | 552e074e00463daadd7cad8d14f462fba0ea707c /converters | |
parent | 68673427a268064f03fc331fa2f28b5802915fb6 (diff) | |
download | pkgsrc-a2a631d4ecd0ddb62211f2f1a76c8e913dcdafc4.tar.gz |
Make this build without root permissions. Fixes Luke's PR 11893.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/libiconv/files/patch-sum | 3 | ||||
-rw-r--r-- | converters/libiconv/patches/patch-ab | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/converters/libiconv/files/patch-sum b/converters/libiconv/files/patch-sum index 315214e1c8b..d91e0b687d1 100644 --- a/converters/libiconv/files/patch-sum +++ b/converters/libiconv/files/patch-sum @@ -1,3 +1,4 @@ -$NetBSD: patch-sum,v 1.1.1.1 2001/01/01 17:29:20 rh Exp $ +$NetBSD: patch-sum,v 1.2 2001/01/11 10:56:33 rh Exp $ MD5 (patch-aa) = 4d5a9cbe00cc0cc9147c54819c0b9a20 +MD5 (patch-ab) = 49032f6fe17e396ab32c389c409d37b9 diff --git a/converters/libiconv/patches/patch-ab b/converters/libiconv/patches/patch-ab new file mode 100644 index 00000000000..798192f849c --- /dev/null +++ b/converters/libiconv/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2001/01/11 10:56:34 rh Exp $ + +--- Makefile.in.orig Sat Dec 2 04:00:57 2000 ++++ Makefile.in +@@ -27,7 +27,9 @@ + SHELL = /bin/sh + + all : force +- builddir="`pwd`"; cd libcharset && $(MAKE) -r all && $(MAKE) -r install-lib libdir="$$builddir/lib" includedir="$$builddir/lib" ++ builddir="`pwd`"; cd libcharset && $(MAKE) -r all && \ ++ cp -pR lib/libcharset.la lib/.libs "$$builddir/lib" && \ ++ cp -pR include/*.h "$$builddir/include" + cd lib && $(MAKE) -r all + cd src && $(MAKE) -r all + cd man && $(MAKE) -r all |