diff options
Diffstat (limited to 'appweb/appweb_1.0.0.oe')
-rw-r--r-- | appweb/appweb_1.0.0.oe | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/appweb/appweb_1.0.0.oe b/appweb/appweb_1.0.0.oe index 4b9178030b..8bb065ea28 100644 --- a/appweb/appweb_1.0.0.oe +++ b/appweb/appweb_1.0.0.oe @@ -49,20 +49,20 @@ python do_patch () { # --enable-ssl # --enable-session -APPWEB_TARGET = ${TARGET_ARCH} -APPWEB_OS = ${TARGET_OS} -APPWEB_OS_linux = LINUX -EXTRA_OECONF = '--os ${APPWEB_OS} --target ${APPWEB_TARGET} \ +APPWEB_TARGET = "${TARGET_ARCH}" +APPWEB_OS = "${TARGET_OS}" +APPWEB_OS_linux = "LINUX" +EXTRA_OECONF = "--os ${APPWEB_OS} --target ${APPWEB_TARGET} \ --enable-keep-alive \ --enable-multi-thread \ --enable-cgi \ --enable-cookie \ --enable-config \ --enable-digest-auth \ - --disable-ssl' + --disable-ssl" EXTRA_OEMAKE = "'CC=${CC}' 'AR=${AR}' 'CPP=${CXX}' 'LD=${CC}'" -export LD_LIBRARY_PATH=${S}/lib:${LD_LIBRARY_PATH} +export LD_LIBRARY_PATH = "${S}/lib:${LD_LIBRARY_PATH}" do_configure () { ./configure ${EXTRA_OECONF} } |