diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-24 15:18:35 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-24 15:18:35 +0000 |
commit | 19ff97c49f5e4b11eb395ce5e7b6a9a51171cdec (patch) | |
tree | 3797eff5681f7b7188f4e315c2b05fcd936f57e8 /appweb | |
parent | 85b9c66123293478a0618e3ba230adc266c85eea (diff) |
Another pass of cleanups...
..cheated and made the parser temporarily more picky to spot the packages that need cleaning.
BKrev: 4061a6cbKWfvpS3a5Dml4UNIp_LkNQ
Diffstat (limited to 'appweb')
-rw-r--r-- | appweb/appweb_1.0.0.oe | 12 | ||||
-rw-r--r-- | appweb/appweb_1.0.1.oe | 12 | ||||
-rw-r--r-- | appweb/appweb_1.0.2.oe | 12 |
3 files changed, 18 insertions, 18 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} } diff --git a/appweb/appweb_1.0.1.oe b/appweb/appweb_1.0.1.oe index 90f90d52e7..29ca677d58 100644 --- a/appweb/appweb_1.0.1.oe +++ b/appweb/appweb_1.0.1.oe @@ -48,20 +48,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} } diff --git a/appweb/appweb_1.0.2.oe b/appweb/appweb_1.0.2.oe index 667051bd09..6b271767e1 100644 --- a/appweb/appweb_1.0.2.oe +++ b/appweb/appweb_1.0.2.oe @@ -48,20 +48,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} } |