From 4eb3ef096520d7afdb9710c4889dd1396187480e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 1 Mar 2012 16:27:39 +0200 Subject: Quote passed value --- dist.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/dist.sh b/dist.sh index 562c84e..64710a9 100755 --- a/dist.sh +++ b/dist.sh @@ -214,7 +214,7 @@ dist dist_prefix=$out_root/odb cd $out_root/odb ./bootstrap - ./configure --with-libcutl=../libcutl CXX=$cxxp CXXFLAGS="$CXXFLAGS" + ./configure --with-libcutl=../libcutl CXX="$cxxp" CXXFLAGS="$CXXFLAGS" make -j 8 make dist @@ -237,7 +237,7 @@ cd $out_root/libodb if [ $rebuild = y ]; then ./bootstrap - ./configure CXX=$cxx CXXFLAGS="$CXXFLAGS" + ./configure CXX="$cxx" CXXFLAGS="$CXXFLAGS" fi make -j 8 @@ -259,7 +259,7 @@ cd $out_root/libodb-mssql if [ $rebuild = y ]; then ./bootstrap ./configure --with-libodb=../libodb \ - CXX=$cxx \ + CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ $mssql_options fi @@ -283,7 +283,7 @@ cd $out_root/libodb-oracle if [ $rebuild = y ]; then ./bootstrap ./configure --with-libodb=../libodb \ - CXX=$cxx \ + CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ $oracle_options fi @@ -307,7 +307,7 @@ cd $out_root/libodb-pgsql if [ $rebuild = y ]; then ./bootstrap ./configure --with-libodb=../libodb \ - CXX=$cxx \ + CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ $pgsql_options fi @@ -331,7 +331,7 @@ cd $out_root/libodb-sqlite if [ $rebuild = y ]; then ./bootstrap ./configure --with-libodb=../libodb \ - CXX=$cxx \ + CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ $sqlite_options fi @@ -355,7 +355,7 @@ cd $out_root/libodb-mysql if [ $rebuild = y ]; then ./bootstrap ./configure --with-libodb=../libodb \ - CXX=$cxx \ + CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ $mysql_options fi @@ -378,7 +378,7 @@ cd $out_root/libodb-boost if [ $rebuild = y ]; then ./bootstrap - ./configure --with-libodb=../libodb CXX=$cxx CXXFLAGS="$CXXFLAGS" + ./configure --with-libodb=../libodb CXX="$cxx" CXXFLAGS="$CXXFLAGS" fi make -j 8 @@ -399,7 +399,7 @@ cd $out_root/libodb-qt if [ $rebuild = y ]; then ./bootstrap - ./configure --with-libodb=../libodb CXX=$cxx CXXFLAGS="$CXXFLAGS" + ./configure --with-libodb=../libodb CXX="$cxx" CXXFLAGS="$CXXFLAGS" fi make -j 8 @@ -440,7 +440,7 @@ for d in $db; do --with-libodb-boost=../libodb-boost \ --with-libodb-qt=../libodb-qt \ ${!optvar} \ -CXX=$cxx \ +CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ ODB=$odb fi @@ -491,7 +491,7 @@ for d in $db; do --with-libodb-boost=../libodb-boost \ --with-libodb-qt=../libodb-qt \ ${!optvar} \ -CXX=$cxx \ +CXX="$cxx" \ CXXFLAGS="$CXXFLAGS" \ ODB=$odb fi -- cgit v1.1