gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog configure.ac


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog configure.ac
Date: Thu, 19 Jul 2007 00:18:55 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/07/19 00:18:55

Modified files:
        .              : ChangeLog configure.ac 

Log message:
                * configure.ac: quote `backticked commands` when assigning to
                  variables. Should fix bug #20525.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3765&r2=1.3766
http://cvs.savannah.gnu.org/viewcvs/gnash/configure.ac?cvsroot=gnash&r1=1.356&r2=1.357

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3765
retrieving revision 1.3766
diff -u -b -r1.3765 -r1.3766
--- ChangeLog   18 Jul 2007 23:09:04 -0000      1.3765
+++ ChangeLog   19 Jul 2007 00:18:53 -0000      1.3766
@@ -1,5 +1,10 @@
 2007-07-18 Sandro Santilli <address@hidden>
 
+       * configure.ac: quote `backticked commands` when assigning to
+         variables. Should fix bug #20525.
+
+2007-07-18 Sandro Santilli <address@hidden>
+
        * backend/render_handler_agg_style.h: fixed initialization order
          warnings.
        * backend/render_handler_agg.cpp: signedness and initialization list

Index: configure.ac
===================================================================
RCS file: /sources/gnash/gnash/configure.ac,v
retrieving revision 1.356
retrieving revision 1.357
diff -u -b -r1.356 -r1.357
--- configure.ac        14 Jul 2007 19:25:03 -0000      1.356
+++ configure.ac        19 Jul 2007 00:18:54 -0000      1.357
@@ -15,7 +15,7 @@
 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 dnl  
 
-dnl $Id: configure.ac,v 1.356 2007/07/14 19:25:03 rsavoye Exp $
+dnl $Id: configure.ac,v 1.357 2007/07/19 00:18:54 strk Exp $
 
 AC_PREREQ(2.50)
 AC_INIT(gnash, cvs)
@@ -476,15 +476,15 @@
 dnl options to configure.
 if test x$cross_compiling = xyes; then
   AC_MSG_NOTICE([Configuring Gnash for cross compilation])
-  export pkgroot=`$CXX -print-search-dirs | grep "install:" | sed -e 
's/install: //' -e 's:/lib/gcc/.*::'`
-  export incllist=`eval echo ${with_top_level}/include 
${pkgroot}/${host_alias}/include ${pkgroot}/include`
-  export libslist=`eval echo ${with_top_level}/lib 
${pkgroot}/${host_alias}/lib ${pkgroot}/lib64 ${pkgroot}/lib32 ${pkgroot}/lib`
-  export pathlist=`eval echo ${pkgroot}/${host_alias}/bin:${pkgroot}/bin`
+  export pkgroot="`$CXX -print-search-dirs | grep "install:" | sed -e 
's/install: //' -e 's:/lib/gcc/.*::'`"
+  export incllist="`eval echo ${with_top_level}/include 
${pkgroot}/${host_alias}/include ${pkgroot}/include`"
+  export libslist="`eval echo ${with_top_level}/lib 
${pkgroot}/${host_alias}/lib ${pkgroot}/lib64 ${pkgroot}/lib32 ${pkgroot}/lib`"
+  export pathlist="`eval echo ${pkgroot}/${host_alias}/bin:${pkgroot}/bin`"
   plugin=no
 else
   AC_MSG_NOTICE([Configuring Gnash for native compilation])
-  export incllist=`eval cat ${srcdir}/macros/incllist`
-  export libslist=`eval cat ${srcdir}/macros/libslist`
+  export incllist="`eval cat ${srcdir}/macros/incllist`"
+  export libslist="`eval cat ${srcdir}/macros/libslist`"
   export pathlist=$PATH
 fi
 




reply via email to

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