summaryrefslogtreecommitdiff
path: root/packages/gnu-config/gnu-config.bb
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2005-03-09 18:56:36 +0000
committerChris Larson <clarson@kergoth.com>2005-03-09 18:56:36 +0000
commitd59c59b5922e1fd3d31c9951df3c23e69b7193f4 (patch)
tree9840239c637592ff319ee1d1bd79c288f9fb2548 /packages/gnu-config/gnu-config.bb
parenteccdf92b20e5fcc8784a1061613d7ea2014ef8fa (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into handhelds.org:/home/kergoth/code/openembedded 2005/03/09 13:55:44-05:00 handhelds.org!kergoth Apply config-guess-uclibc patch from gentoo, which makes it able to pick up on a uclibc environment when run in one. This should fix ./configure scripts run natively inside linux-uclibc root filesystems. BKrev: 422f46e4hX3j48w9mWFop_sczDhETw
Diffstat (limited to 'packages/gnu-config/gnu-config.bb')
-rw-r--r--packages/gnu-config/gnu-config.bb25
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/gnu-config/gnu-config.bb b/packages/gnu-config/gnu-config.bb
deleted file mode 100644
index 092da1327b..0000000000
--- a/packages/gnu-config/gnu-config.bb
+++ /dev/null
@@ -1,25 +0,0 @@
-SECTION = "base"
-PV = "0.1"
-LICENSE = "GPL"
-MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
-SRC_URI = "ftp://ftp.club.cc.cmu.edu/pub/gnu/config/config.guess \
- ftp://ftp.club.cc.cmu.edu/pub/gnu/config/config.sub \
- file://uclibc.patch;patch=1;pnum=0 \
- file://gnu-configize.in"
-S = "${WORKDIR}"
-
-INHIBIT_DEFAULT_DEPS = "1"
-DEPENDS = ""
-PACKAGES = "${PN}"
-FILES_${PN} = "${bindir} \
- ${datadir}/gnu-config"
-
-do_install () {
- install -d ${D}${datadir}/gnu-config \
- ${D}${bindir}
- cat ${WORKDIR}/gnu-configize.in | \
- sed -e 's,@gnu-configdir@,${datadir}/gnu-config,' \
- -e 's,@autom4te_perllibdir@,${STAGING_DATADIR}/autoconf,' > ${STAGING_BINDIR}/gnu-configize
- chmod 755 ${D}${bindir}/gnu-configize
- install -m 0644 config.guess config.sub ${D}${datadir}/gnu-config/
-}