Author: michaelld Date: 2008-02-11 07:58:36 -0700 (Mon, 11 Feb 2008) New Revision: 7631
Modified: gnuradio/trunk/configure.ac Log: Fix for older autoconf that doesn't define "abs_top_YYY" variables by default. Modified: gnuradio/trunk/configure.ac =================================================================== --- gnuradio/trunk/configure.ac 2008-02-11 03:18:32 UTC (rev 7630) +++ gnuradio/trunk/configure.ac 2008-02-11 14:58:36 UTC (rev 7631) @@ -254,6 +254,10 @@ AC_SUBST([skipped_dirs], [$skipped_dirs]) AC_SUBST([with_dirs], [$with_dirs]) +# fix for older autotools that don't define "abs_top_YYY" by default +AC_SUBST(abs_top_srcdir) +AC_SUBST(abs_top_builddir) + # 'with' variables - the pre-installed libraries, includes, and paths # - must always come last in the lists, so they require special # treatment. _______________________________________________ Commit-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnuradio
