diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-05 10:57:37 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-05 10:57:37 +0000 |
commit | 4151afd746e6236538898394b4743866d14c53ee (patch) | |
tree | d0a90263eb484d2a664037999629885dcebdc932 /www/elinks | |
parent | 577ec15c76b0d59ae37ac0bb3d8f2acf2417895c (diff) | |
download | pkgsrc-4151afd746e6236538898394b4743866d14c53ee.tar.gz |
Fixed redirection operator in the configure script.
Diffstat (limited to 'www/elinks')
-rw-r--r-- | www/elinks/distinfo | 4 | ||||
-rw-r--r-- | www/elinks/patches/patch-aa | 15 |
2 files changed, 14 insertions, 5 deletions
diff --git a/www/elinks/distinfo b/www/elinks/distinfo index f7a70334937..b7c81cf2145 100644 --- a/www/elinks/distinfo +++ b/www/elinks/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.16 2006/09/06 15:14:34 abs Exp $ +$NetBSD: distinfo,v 1.17 2006/10/05 10:57:37 rillig Exp $ SHA1 (elinks-0.11.1.tar.bz2) = dfa18f2745976e34ce3ee27227ce9bce81495a77 RMD160 (elinks-0.11.1.tar.bz2) = 2c5039a2e3d7ee3fc283d3041cac40f3c7853520 Size (elinks-0.11.1.tar.bz2) = 2612791 bytes -SHA1 (patch-aa) = 1912232785a6db8412362a512408c87a75a1ecce +SHA1 (patch-aa) = 5a3e742a2a69b815052e9abad8df77fb9565c810 SHA1 (patch-ab) = b08b2c8a9148e69ab18eb8577f95672cd707cdf3 SHA1 (patch-ac) = f7dc18652782a5ad0768a5693a69bcadc6e5754d diff --git a/www/elinks/patches/patch-aa b/www/elinks/patches/patch-aa index 9fa299d9681..235515da156 100644 --- a/www/elinks/patches/patch-aa +++ b/www/elinks/patches/patch-aa @@ -1,7 +1,16 @@ -$NetBSD: patch-aa,v 1.4 2006/08/14 22:38:24 wiz Exp $ +$NetBSD: patch-aa,v 1.5 2006/10/05 10:57:37 rillig Exp $ ---- configure.orig 2006-01-29 13:10:47.000000000 +0000 -+++ configure +--- configure.orig 2006-01-29 14:10:47.000000000 +0100 ++++ configure 2006-10-05 12:51:00.000000000 +0200 +@@ -2959,7 +2959,7 @@ _ACEOF + + + echo > config.asciidoc-unsafe.txt +- if "$ASCIIDOC" --unsafe config.asciidoc-unsafe.txt >&/dev/null; then ++ if "$ASCIIDOC" --unsafe config.asciidoc-unsafe.txt 1>/dev/null 2>&1; then + ASCIIDOC_FLAGS=--unsafe + fi + rm config.asciidoc-unsafe.* @@ -17103,7 +17103,7 @@ if test -z "$disable_lua"; then for luadir in "$withval" "" /usr /usr/local; do for suffix in "" 50 51; do |