From: gdt Date: Mon, 23 Oct 2006 13:06:33 +0000 (+0000) Subject: Fix "test ==". X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=748e8b199f9c1586b802646393037a297fa9c2f8;p=debian%2Fgnuradio Fix "test ==". git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3832 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/gr-howto-write-a-block/config/gr_boost.m4 b/gr-howto-write-a-block/config/gr_boost.m4 index 41d855d5..7236cbb5 100644 --- a/gr-howto-write-a-block/config/gr_boost.m4 +++ b/gr-howto-write-a-block/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