diff options
author | Richard Purdie <richard@openedhand.com> | 2006-05-25 13:59:18 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-05-25 13:59:18 +0000 |
commit | 1cc8b97471f2a2f3943bbb3ef7fb1c80776aa206 (patch) | |
tree | 47eca922a25d22f53368c7b9e2e9c0fa7d6a3ba3 | |
parent | ff5ff97fecdba882347f3e727491a427545c3058 (diff) | |
download | poky-1cc8b97471f2a2f3943bbb3ef7fb1c80776aa206.tar.gz |
libtool: Fix breakage if the compiler flags change
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@422 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | openembedded/packages/libtool/libtool-1.5.10/tag1.patch | 13 | ||||
-rw-r--r-- | openembedded/packages/libtool/libtool-cross_1.5.10.bb | 2 | ||||
-rw-r--r-- | openembedded/packages/libtool/libtool-native_1.5.10.bb | 3 |
3 files changed, 17 insertions, 1 deletions
diff --git a/openembedded/packages/libtool/libtool-1.5.10/tag1.patch b/openembedded/packages/libtool/libtool-1.5.10/tag1.patch new file mode 100644 index 0000000000..6fefd6266d --- /dev/null +++ b/openembedded/packages/libtool/libtool-1.5.10/tag1.patch | |||
@@ -0,0 +1,13 @@ | |||
1 | Index: libtool-1.5.10/libltdl/ltmain.sh | ||
2 | =================================================================== | ||
3 | --- libtool-1.5.10.orig/libltdl/ltmain.sh 2004-09-19 13:34:44.000000000 +0100 | ||
4 | +++ libtool-1.5.10/libltdl/ltmain.sh 2006-05-25 15:28:39.000000000 +0100 | ||
5 | @@ -232,7 +232,7 @@ | ||
6 | if test -z "$tagname"; then | ||
7 | $echo "$modename: unable to infer tagged configuration" | ||
8 | $echo "$modename: specify a tag with \`--tag'" 1>&2 | ||
9 | - exit $EXIT_FAILURE | ||
10 | +# exit $EXIT_FAILURE | ||
11 | # else | ||
12 | # $echo "$modename: using $tagname tagged configuration" | ||
13 | fi | ||
diff --git a/openembedded/packages/libtool/libtool-cross_1.5.10.bb b/openembedded/packages/libtool/libtool-cross_1.5.10.bb index dd24add3b3..22e404c9d5 100644 --- a/openembedded/packages/libtool/libtool-cross_1.5.10.bb +++ b/openembedded/packages/libtool/libtool-cross_1.5.10.bb | |||
@@ -1,11 +1,13 @@ | |||
1 | SECTION = "devel" | 1 | SECTION = "devel" |
2 | include libtool_${PV}.bb | 2 | include libtool_${PV}.bb |
3 | 3 | ||
4 | PR = "r4" | ||
4 | PACKAGES = "" | 5 | PACKAGES = "" |
5 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" | 6 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" |
6 | SRC_URI_append = " file://libdir-la.patch;patch=1 \ | 7 | SRC_URI_append = " file://libdir-la.patch;patch=1 \ |
7 | file://prefix.patch;patch=1 \ | 8 | file://prefix.patch;patch=1 \ |
8 | file://tag.patch;patch=1 \ | 9 | file://tag.patch;patch=1 \ |
10 | file://tag1.patch;patch=1 \ | ||
9 | file://install-path-check.patch;patch=1" | 11 | file://install-path-check.patch;patch=1" |
10 | S = "${WORKDIR}/libtool-${PV}" | 12 | S = "${WORKDIR}/libtool-${PV}" |
11 | 13 | ||
diff --git a/openembedded/packages/libtool/libtool-native_1.5.10.bb b/openembedded/packages/libtool/libtool-native_1.5.10.bb index fa2a6f4c8a..ff001be63c 100644 --- a/openembedded/packages/libtool/libtool-native_1.5.10.bb +++ b/openembedded/packages/libtool/libtool-native_1.5.10.bb | |||
@@ -1,11 +1,12 @@ | |||
1 | SECTION = "devel" | 1 | SECTION = "devel" |
2 | include libtool_${PV}.bb | 2 | include libtool_${PV}.bb |
3 | 3 | ||
4 | PR = "r3" | 4 | PR = "r4" |
5 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" | 5 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libtool-${PV}" |
6 | SRC_URI_append = " file://libdir-la.patch;patch=1 \ | 6 | SRC_URI_append = " file://libdir-la.patch;patch=1 \ |
7 | file://prefix.patch;patch=1 \ | 7 | file://prefix.patch;patch=1 \ |
8 | file://tag.patch;patch=1 \ | 8 | file://tag.patch;patch=1 \ |
9 | file://tag1.patch;patch=1 \ | ||
9 | file://install-path-check.patch;patch=1" | 10 | file://install-path-check.patch;patch=1" |
10 | S = "${WORKDIR}/libtool-${PV}" | 11 | S = "${WORKDIR}/libtool-${PV}" |
11 | 12 | ||