summaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-09-23 16:36:26 +0000
committerChris Larson <clarson@kergoth.com>2004-09-23 16:36:26 +0000
commit2fe05780190f3b6520b6ae212993eb31c7bf84b1 (patch)
tree431785142afe45bf967528cff49a05dbbb08629a /binutils
parentdbc58e3910b4cefa75e1a14bc58f6f99f1212460 (diff)
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/oe/packages 2004/09/23 17:32:34+01:00 (none)!pb Merge bk://openembedded@openembedded.bkbits.net/packages into stealth.(none):/home/pb/oe/oe-packages 2004/09/23 17:32:08+01:00 (none)!pb avoid installing bogus symlinks in bin directory BKrev: 4152fb8av9AO-vT-5ddpw_Tnm3eQUw
Diffstat (limited to 'binutils')
-rw-r--r--binutils/binutils-cross-sdk_2.15.91.0.2.oe21
1 files changed, 21 insertions, 0 deletions
diff --git a/binutils/binutils-cross-sdk_2.15.91.0.2.oe b/binutils/binutils-cross-sdk_2.15.91.0.2.oe
index e69de29bb2..e9af9e897c 100644
--- a/binutils/binutils-cross-sdk_2.15.91.0.2.oe
+++ b/binutils/binutils-cross-sdk_2.15.91.0.2.oe
@@ -0,0 +1,21 @@
+PR = "r1"
+include binutils_${PV}.oe
+inherit sdk
+DEPENDS += "flex-native bison-native"
+FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/binutils-${PV}"
+EXTRA_OECONF = "--with-sysroot=${CROSS_DIR}/${TARGET_SYS} \
+ --disable-nls \
+ --program-prefix=${TARGET_PREFIX}"
+
+do_stage() {
+ :
+}
+
+do_install () {
+ autotools_do_install
+
+ # Install the libiberty header
+ install -d ${D}/${includedir}
+ install -m 644 ${S}/include/ansidecl.h ${D}/${includedir}
+ install -m 644 ${S}/include/libiberty.h ${D}/${includedir}
+}