[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3789 - gnuradio/trunk/config
From: |
gdt |
Subject: |
[Commit-gnuradio] r3789 - gnuradio/trunk/config |
Date: |
Sat, 14 Oct 2006 18:01:00 -0600 (MDT) |
Author: gdt
Date: 2006-10-14 18:01:00 -0600 (Sat, 14 Oct 2006)
New Revision: 3789
Modified:
gnuradio/trunk/config/gr_boost.m4
Log:
portability: use = instead of == with test
from Rolang Illig via NetBSD pkgsrc
Modified: gnuradio/trunk/config/gr_boost.m4
===================================================================
--- gnuradio/trunk/config/gr_boost.m4 2006-10-14 18:53:56 UTC (rev 3788)
+++ gnuradio/trunk/config/gr_boost.m4 2006-10-15 00:01:00 UTC (rev 3789)
@@ -43,8 +43,8 @@
[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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3789 - gnuradio/trunk/config,
gdt <=