diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-18 19:38:04 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-18 19:38:04 +0000 |
commit | d35c0a6f932fe8e51a1f9fe2bd5d6fd572f86e2e (patch) | |
tree | 1485d02812a963e9a8f6edd10879574dcf297e15 /content/cross-binutils-2.14.90.0.6.oe | |
parent | cd174f2ffd7c85a15918c19d62faa25741db3ad8 (diff) |
Adjust the way we handle our BUILD vs HOST vs TARGET.
BKrev: 3f6a099cJfKoPCEz0cqWUDlnW4duuw
Diffstat (limited to 'content/cross-binutils-2.14.90.0.6.oe')
-rw-r--r-- | content/cross-binutils-2.14.90.0.6.oe | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/content/cross-binutils-2.14.90.0.6.oe b/content/cross-binutils-2.14.90.0.6.oe index c8e186665c..68f0ee115c 100644 --- a/content/cross-binutils-2.14.90.0.6.oe +++ b/content/cross-binutils-2.14.90.0.6.oe @@ -3,20 +3,9 @@ PROVIDES = virtual/${OLDARCH}-${OLDOS}-binutils SRC_URI = http://ftp.kernel.org/pub/linux/devel/binutils/binutils-${PV}.tar.gz S = ${WORKDIR}/binutils-${PV} -OLDOS := ${OS} -OLDARCH := ${ARCH} CROSS_DIR := ${CROSS_DIR} -inherit noncross autotools - -do_configure() { - ./configure --prefix=${CROSS_DIR} --target=${OLDARCH}-${OLDOS} -} +prefix=${CROSS_DIR} +exec_prefix=${prefix} +inherit cross autotools EXTRA_OEMAKE = -do_compile() { - oe_runmake -} - -do_install() { - oe_runmake install -} |