diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-15 08:22:09 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-15 08:22:09 +0000 |
commit | 05c3b57203bffb0cfafaad8c0a68ea75d48b1e38 (patch) | |
tree | c8b62a83bd00428a78e1f6c8458637b60e7c1721 | |
parent | 8925b1cf39a96675561800611acaeb264d90ccf4 (diff) |
gnu-configize call fixups.
BKrev: 40a5d331kCYQZnTvqnmSfG8zJCGwtg
-rw-r--r-- | db/db3_3.2.9.oe | 4 | ||||
-rw-r--r-- | freetype/freetype-native_2.1.7.oe | 2 | ||||
-rw-r--r-- | gcc/gcc_3.3.3.oe | 2 | ||||
-rw-r--r-- | gcc/gcc_3.4.0.oe | 2 | ||||
-rw-r--r-- | glibc/glibc_2.3.2.oe | 2 | ||||
-rw-r--r-- | glibc/glibc_cvs.oe | 1 |
6 files changed, 7 insertions, 6 deletions
diff --git a/db/db3_3.2.9.oe b/db/db3_3.2.9.oe index 3c3d63d7c6..75f90ac442 100644 --- a/db/db3_3.2.9.oe +++ b/db/db3_3.2.9.oe @@ -38,12 +38,12 @@ do_configure_prepend () { do_configure () { set -e - cd ${B} + cd ${S} gnu-configize + cd ${B} oe_runconf --enable-shared --disable-static mkdir -p ${WORKDIR}/db-${PV}/build_unix_static cd ${WORKDIR}/db-${PV}/build_unix_static - gnu-configize oe_runconf --disable-shared --enable-static cd ${S} } diff --git a/freetype/freetype-native_2.1.7.oe b/freetype/freetype-native_2.1.7.oe index 5c816ea5b1..c617a979c2 100644 --- a/freetype/freetype-native_2.1.7.oe +++ b/freetype/freetype-native_2.1.7.oe @@ -10,7 +10,7 @@ S = "${WORKDIR}/freetype-${PV}" PACKAGES = "" do_configure () { - gnu-configize + (cd builds/unix && gnu-configize) || die "failure running gnu-configize" oe_runconf } diff --git a/gcc/gcc_3.3.3.oe b/gcc/gcc_3.3.3.oe index 72cd81c19b..4f30cb5c21 100644 --- a/gcc/gcc_3.3.3.oe +++ b/gcc/gcc_3.3.3.oe @@ -176,7 +176,7 @@ do_configure () { export AR_FOR_TARGET="${HOST_PREFIX}ar" export RANLIB_FOR_TARGET="${HOST_PREFIX}ranlib" fi - gnu-configize + (cd ${S} && gnu-configize) || die "failure running gnu-configize" oe_runconf } diff --git a/gcc/gcc_3.4.0.oe b/gcc/gcc_3.4.0.oe index d77e889065..d32e31888d 100644 --- a/gcc/gcc_3.4.0.oe +++ b/gcc/gcc_3.4.0.oe @@ -170,7 +170,7 @@ do_configure () { export AR_FOR_TARGET="${HOST_PREFIX}ar" export RANLIB_FOR_TARGET="${HOST_PREFIX}ranlib" fi - gnu-configize + (cd ${S} && gnu-configize) || die "failure running gnu-configize" oe_runconf } diff --git a/glibc/glibc_2.3.2.oe b/glibc/glibc_2.3.2.oe index 3afe5efec4..a103e89449 100644 --- a/glibc/glibc_2.3.2.oe +++ b/glibc/glibc_2.3.2.oe @@ -151,7 +151,7 @@ do_configure () { # calls for now # don't pass CPPFLAGS into configure, since it upsets the kernel-headers # version check and doesn't really help with anything - gnu-configize + (cd ${S} && gnu-configize) || die "failure in running gnu-configize" CPPFLAGS="" oe_runconf } diff --git a/glibc/glibc_cvs.oe b/glibc/glibc_cvs.oe index f6bd42006d..39d3983836 100644 --- a/glibc/glibc_cvs.oe +++ b/glibc/glibc_cvs.oe @@ -103,6 +103,7 @@ do_configure () { # calls for now # don't pass CPPFLAGS into configure, since it upsets the kernel-headers # version check and doesn't really help with anything + (cd ${S} && gnu-configize) || die "failure in running gnu-configize" CPPFLAGS="" oe_runconf } |