[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Commit-gnuradio] r10198 - gnuradio/trunk/config
From: |
Eric Blossom |
Subject: |
Re: [Commit-gnuradio] r10198 - gnuradio/trunk/config |
Date: |
Wed, 7 Jan 2009 13:21:54 -0800 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
On Wed, Jan 07, 2009 at 12:50:21PM -0700, address@hidden wrote:
> Author: jblum
> Date: 2009-01-07 12:50:19 -0700 (Wed, 07 Jan 2009)
> New Revision: 10198
>
> Modified:
> gnuradio/trunk/config/grc_grc.m4
> Log:
> gtk test import redirect warning
>
> Modified: gnuradio/trunk/config/grc_grc.m4
> ===================================================================
> --- gnuradio/trunk/config/grc_grc.m4 2009-01-07 02:23:33 UTC (rev 10197)
> +++ gnuradio/trunk/config/grc_grc.m4 2009-01-07 19:50:19 UTC (rev 10198)
> @@ -50,7 +50,7 @@
> dnl ########################################
> if test $passed = yes; then
> AC_MSG_CHECKING([for GTK version >= 2.10.0])
> - if test `${PYTHON} -c "import gtk; print gtk.pygtk_version >= (2,
> 10, 0)"` = 'True'; then
> + if test `${PYTHON} -c "import gtk; print gtk.pygtk_version >= (2,
> 10, 0)" 2> /dev/null` = 'True'; then
> AC_MSG_RESULT([yes])
> else
> AC_MSG_RESULT([no])
>
I think this would fix the syntax error:
> + if test "`${PYTHON} -c "import gtk; print gtk.pygtk_version >= (2,
> 10, 0)" 2> /dev/null`" = 'True'; then
You might need to screw around with the quoting to get it right.
Eric