diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-09 00:30:57 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-10 10:45:55 +0100 |
commit | 3d4089ca5eb3ab118a523b506bb182ec77b54924 (patch) | |
tree | 8041a6f84123ddbfed2f7b8da032d4ba2e158271 /meta | |
parent | 082976c05fcb4c1032125963cd8909d59dc69e41 (diff) | |
download | poky-3d4089ca5eb3ab118a523b506bb182ec77b54924.tar.gz |
gnu-config: Fix target version to contain all the substitutions and not overwrite the first half with the second set of changes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gnu-config/gnu-config_20080123.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb b/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb index 66d027e933..1ca5c8944c 100644 --- a/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb +++ b/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb | |||
@@ -6,7 +6,7 @@ INHIBIT_DEFAULT_DEPS = "1" | |||
6 | 6 | ||
7 | FIXEDSRCDATE = "${@bb.data.getVar('FILE', d, 1).split('_')[-1].split('.')[0]}" | 7 | FIXEDSRCDATE = "${@bb.data.getVar('FILE', d, 1).split('_')[-1].split('.')[0]}" |
8 | PV = "0.1+cvs${FIXEDSRCDATE}" | 8 | PV = "0.1+cvs${FIXEDSRCDATE}" |
9 | PR = "r0" | 9 | PR = "r1" |
10 | 10 | ||
11 | SRC_URI = "cvs://anonymous@cvs.sv.gnu.org/cvsroot/config;module=config;method=pserver;date=${FIXEDSRCDATE} \ | 11 | SRC_URI = "cvs://anonymous@cvs.sv.gnu.org/cvsroot/config;module=config;method=pserver;date=${FIXEDSRCDATE} \ |
12 | file://config-guess-uclibc.patch \ | 12 | file://config-guess-uclibc.patch \ |
@@ -25,8 +25,7 @@ do_install () { | |||
25 | -e 's,@autom4te_perllibdir@,${datadir}/autoconf,g' > ${D}${bindir}/gnu-configize | 25 | -e 's,@autom4te_perllibdir@,${datadir}/autoconf,g' > ${D}${bindir}/gnu-configize |
26 | # In the native case we want the system perl as perl-native can't have built yet | 26 | # In the native case we want the system perl as perl-native can't have built yet |
27 | if [ "${BUILD_ARCH}" != "${TARGET_ARCH}" ]; then | 27 | if [ "${BUILD_ARCH}" != "${TARGET_ARCH}" ]; then |
28 | cat ${WORKDIR}/gnu-configize.in | \ | 28 | sed -i -e 's,/usr/bin/perl,${bindir}/perl,g' ${D}${bindir}/gnu-configize |
29 | sed -e 's,/usr/bin/perl,${bindir}/perl,g' > ${D}${bindir}/gnu-configize | ||
30 | fi | 29 | fi |
31 | chmod 755 ${D}${bindir}/gnu-configize | 30 | chmod 755 ${D}${bindir}/gnu-configize |
32 | install -m 0644 config.guess config.sub ${D}${datadir}/gnu-config/ | 31 | install -m 0644 config.guess config.sub ${D}${datadir}/gnu-config/ |