launchpad: enclose only CFLAGS values in quotes

Build was still failing on a command not found as it tries to execute CFLAGS as a command.

Refs #44894

Change-Id: I67aaff5d11280125bac439f3afefae78c7b55684
This commit is contained in:
Emmanuel Milou
2014-04-24 15:38:00 -04:00
parent 3733271111
commit 246585c22e
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ configure-stamp:
# Add here commands to configure the package.
./autogen.sh
./configure --prefix=/usr --enable-video
cd libs/pjproject-2.2.1; "CFLAGS=-fPIC -O2 -DNDEBUG" ./configure $(PJ_CONFIG_OPTIONS)
cd libs/pjproject-2.2.1; CFLAGS="-fPIC -O2 -DNDEBUG" ./configure $(PJ_CONFIG_OPTIONS)
touch configure-stamp
#Architecture

View File

@ -38,7 +38,7 @@ configure-stamp:
# Add here commands to configure the package.
./autogen.sh
./configure --prefix=/usr
cd libs/pjproject-2.2.1; "CFLAGS=-fPIC -O2 -DNDEBUG" ./configure $(PJ_CONFIG_OPTIONS)
cd libs/pjproject-2.2.1; CFLAGS="-fPIC -O2 -DNDEBUG" ./configure $(PJ_CONFIG_OPTIONS)
touch configure-stamp
#Architecture