commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r10531 - gnuradio/trunk/config


From: michaelld
Subject: [Commit-gnuradio] r10531 - gnuradio/trunk/config
Date: Thu, 26 Feb 2009 20:35:21 -0700 (MST)

Author: michaelld
Date: 2009-02-26 20:35:20 -0700 (Thu, 26 Feb 2009)
New Revision: 10531

Modified:
   gnuradio/trunk/config/grc_build.m4
Log:
Fixes the error message printed when a component (call it 'foo') is
configured using --with-foo , but a dependency of this with-component
(call the dependency 'bar') was not configured using --with-bar
(either it was included using --enable-bar , or not included at all).
Simple change, complex explanation ;)



Modified: gnuradio/trunk/config/grc_build.m4
===================================================================
--- gnuradio/trunk/config/grc_build.m4  2009-02-27 03:23:36 UTC (rev 10530)
+++ gnuradio/trunk/config/grc_build.m4  2009-02-27 03:35:20 UTC (rev 10531)
@@ -1,4 +1,4 @@
-dnl Copyright 2006,2008 Free Software Foundation, Inc.
+dnl Copyright 2006,2008,2009 Free Software Foundation, Inc.
 dnl 
 dnl This file is part of GNU Radio
 dnl 
@@ -201,7 +201,7 @@
         else
             dnl make sure this dependency was --with'd only; not --enable'd
             if test [x$]m4_bpatsubst($2,-,_)[_with] = xno; then
-                AC_MSG_ERROR([Component $1 requires $2 to be included as 
--with-$1@<:@=arg@:>@])
+                AC_MSG_ERROR([Component $1 requires $2 to be included as 
--with-$2@<:@=arg@:>@])
             fi
         fi
     fi





reply via email to

[Prev in Thread] Current Thread [Next in Thread]