diff options
author | gdt | 2006-10-15 00:01:00 +0000 |
---|---|---|
committer | gdt | 2006-10-15 00:01:00 +0000 |
commit | bdb7c3a6eb5050d4eabac42699bc8f720bfd1df1 (patch) | |
tree | 870a82f9bb8d6b5f009c716b5adb26df855de903 /config/gr_boost.m4 | |
parent | a8012b9695d4fca3eaed265c6fcb7db282c93557 (diff) | |
download | gnuradio-bdb7c3a6eb5050d4eabac42699bc8f720bfd1df1.tar.gz gnuradio-bdb7c3a6eb5050d4eabac42699bc8f720bfd1df1.tar.bz2 gnuradio-bdb7c3a6eb5050d4eabac42699bc8f720bfd1df1.zip |
portability: use = instead of == with test
from Rolang Illig via NetBSD pkgsrc
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3789 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'config/gr_boost.m4')
-rw-r--r-- | config/gr_boost.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/gr_boost.m4 b/config/gr_boost.m4 index 41d855d57..7236cbb52 100644 --- a/config/gr_boost.m4 +++ b/config/gr_boost.m4 @@ -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 |