diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-24 17:22:18 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-24 17:22:18 +0000 |
commit | 17e03bf37c06ee9b17343f192949c33571df423b (patch) | |
tree | c35864f8aa718cb3899bf50b2e1fe153393119fa /ham/usrp | |
parent | bd95a78cd0116d5850be7a3bbf44853d913749c9 (diff) | |
download | pkgsrc-17e03bf37c06ee9b17343f192949c33571df423b.tar.gz |
Fixed "test ==".
Diffstat (limited to 'ham/usrp')
-rw-r--r-- | ham/usrp/distinfo | 3 | ||||
-rw-r--r-- | ham/usrp/patches/patch-aa | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/ham/usrp/distinfo b/ham/usrp/distinfo index b59741f3008..705f6e435c9 100644 --- a/ham/usrp/distinfo +++ b/ham/usrp/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2006/04/27 03:19:35 wulf Exp $ +$NetBSD: distinfo,v 1.4 2006/10/24 17:22:18 rillig Exp $ SHA1 (usrp-0.12.tar.gz) = 70c764473effc491549b2153c26ee7e7c6fd07a1 RMD160 (usrp-0.12.tar.gz) = 8342869a4a4855e7bb896f632c4dfd42d0706e30 Size (usrp-0.12.tar.gz) = 1470926 bytes +SHA1 (patch-aa) = 1669edd87bd5d2d49f0b927a8ff79e7221ade0ec diff --git a/ham/usrp/patches/patch-aa b/ham/usrp/patches/patch-aa new file mode 100644 index 00000000000..df53ae451b0 --- /dev/null +++ b/ham/usrp/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2006/10/24 17:22:18 rillig Exp $ + +--- config/gr_boost.m4.orig 2006-04-04 00:52:00.000000000 +0200 ++++ config/gr_boost.m4 2006-10-24 10:47:04.000000000 +0200 +@@ -43,8 +43,8 @@ AC_DEFUN([GR_REQUIRE_BOOST_INCLUDES], + [path to boost c++ include files]), + [ + # "yes" and "no" are bogus answers +- if test x"$with_boost_include_dir" == xyes || +- test x"$with_boost_include_dir" == xno; then ++ if test x"$with_boost_include_dir" = xyes || ++ test x"$with_boost_include_dir" = xno; then + gr_boost_include_dir= + else + gr_boost_include_dir=$with_boost_include_dir |