diff options
author | joerg <joerg@pkgsrc.org> | 2008-07-27 16:35:07 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-07-27 16:35:07 +0000 |
commit | e2ad82e4426d9669223a5667d7d0b8fa7b9b6f12 (patch) | |
tree | 55072b41b3340bf29bec50736260a373ffd8fe1a /www/ap-rivet | |
parent | 9e32e9b7ca8bf4bd9e44c194f0c88804aa6313e5 (diff) | |
download | pkgsrc-e2ad82e4426d9669223a5667d7d0b8fa7b9b6f12.tar.gz |
Fix shell quoting to unbreak build on NetBSD/current.
Diffstat (limited to 'www/ap-rivet')
-rw-r--r-- | www/ap-rivet/distinfo | 3 | ||||
-rw-r--r-- | www/ap-rivet/patches/patch-ad | 23 |
2 files changed, 25 insertions, 1 deletions
diff --git a/www/ap-rivet/distinfo b/www/ap-rivet/distinfo index c36c8ecc8ac..551857c3997 100644 --- a/www/ap-rivet/distinfo +++ b/www/ap-rivet/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2006/08/23 11:22:06 minskim Exp $ +$NetBSD: distinfo,v 1.5 2008/07/27 16:35:07 joerg Exp $ SHA1 (rivet-0.5.0.tar.gz) = a273d1fe72780491294aa8f164fd92f50f2fe8ac RMD160 (rivet-0.5.0.tar.gz) = 1cf02739f16156761ce8d10df855c5812e492312 @@ -6,3 +6,4 @@ Size (rivet-0.5.0.tar.gz) = 792027 bytes SHA1 (patch-aa) = 63fd2544995a5cf4a0245a8c42d9af9ab4dfa8be SHA1 (patch-ab) = 66d7832e71a0d7c19be0a01d5e16ae38fc653f09 SHA1 (patch-ac) = af11e2e286fc00c611e255b07942cb9fd543eb70 +SHA1 (patch-ad) = 0eed225b5b453a832e4fbb4400481dcb1cb1fe24 diff --git a/www/ap-rivet/patches/patch-ad b/www/ap-rivet/patches/patch-ad new file mode 100644 index 00000000000..2e20a5a6d9b --- /dev/null +++ b/www/ap-rivet/patches/patch-ad @@ -0,0 +1,23 @@ +$NetBSD: patch-ad,v 1.1 2008/07/27 16:35:07 joerg Exp $ + +--- configure.orig 2008-07-27 16:07:00.000000000 +0000 ++++ configure +@@ -23365,15 +23365,15 @@ echo $ECHO_N "checking system version (f + else + system=`uname -s`-`uname -r` + if test "$?" -ne 0 ; then +- echo "$as_me:$LINENO: result: unknown (can't find uname command)" >&5 +-echo "${ECHO_T}unknown (can't find uname command)" >&6 ++ echo "$as_me:$LINENO: result: unknown (can\'t find uname command)" >&5 ++echo "${ECHO_T}unknown (can\'t find uname command)" >&6 + system=unknown + else + # Special check for weird MP-RAS system (uname returns weird + # results, and the version is kept in special file). + + if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then +- system=MP-RAS-`awk '{print }' /etc/.relid'` ++ system=MP-RAS-`awk '{print }' /etc/.relid` + fi + if test "`uname -s`" = "AIX" ; then + system=AIX-`uname -v`.`uname -r` |