summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--busybox/busybox_1.00-pre10.oe2
-rw-r--r--gcc/gcc-cross_3.3.3.oe2
-rw-r--r--gcc/gcc-cross_3.4.0.oe2
3 files changed, 3 insertions, 3 deletions
diff --git a/busybox/busybox_1.00-pre10.oe b/busybox/busybox_1.00-pre10.oe
index d93833afe4..49a1eb465d 100644
--- a/busybox/busybox_1.00-pre10.oe
+++ b/busybox/busybox_1.00-pre10.oe
@@ -11,8 +11,8 @@ functionality and behave very much like their GNU counterparts. BusyBox \
provides a fairly complete POSIX environment for any small or embedded \
system."
+# file://${FILESDIR}/busybox-1.00-pre10-fuser.patch;patch=1
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \
- file://${FILESDIR}/busybox-1.00-pre10-fuser.patch;patch=1 \
file://${FILESDIR}/bb-iproute-iftunnel.patch;patch=1"
S = "${WORKDIR}/busybox-${PV}"
export EXTRA_CFLAGS = "${CFLAGS}"
diff --git a/gcc/gcc-cross_3.3.3.oe b/gcc/gcc-cross_3.3.3.oe
index 1c2dee94cc..3fbc4d76f3 100644
--- a/gcc/gcc-cross_3.3.3.oe
+++ b/gcc/gcc-cross_3.3.3.oe
@@ -23,7 +23,7 @@ do_configure () {
export LD="${TARGET_SYS}-ld"
export NM="${TARGET_SYS}-nm"
rm -f ${CROSS_DIR}/lib/gcc-lib/${TARGET_SYS}/${PV}/libgcc_eh.a
- gnu-configize
+ (cd ${S} && gnu-configize) || die "failure running gnu-configize"
oe_runconf
}
diff --git a/gcc/gcc-cross_3.4.0.oe b/gcc/gcc-cross_3.4.0.oe
index 629bdf9bba..72cfb24100 100644
--- a/gcc/gcc-cross_3.4.0.oe
+++ b/gcc/gcc-cross_3.4.0.oe
@@ -19,7 +19,7 @@ export LDFLAGS = ""
do_configure () {
rm -f ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${PV}/libgcc_eh.a
- gnu-configize
+ (cd ${S} && gnu-configize) || die "failure running gnu-configize"
oe_runconf
}