diff options
author | rillig <rillig> | 2006-10-24 17:22:18 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-24 17:22:18 +0000 |
commit | 838278c566312befc429837752f46c84d6e51a39 (patch) | |
tree | c35864f8aa718cb3899bf50b2e1fe153393119fa /ham/usrp/patches | |
parent | 1720fdcc0a1e6beb20f71ac7821819f505dd3684 (diff) | |
download | pkgsrc-838278c566312befc429837752f46c84d6e51a39.tar.gz |
Fixed "test ==".
Diffstat (limited to 'ham/usrp/patches')
-rw-r--r-- | ham/usrp/patches/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
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 |