diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-07-23 22:15:32 +0200 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-07-23 22:20:09 +0200 |
commit | 7294db5d172bde3ff6ee83456f1254cbbe6e08de (patch) | |
tree | 0d6fbe7a7145a0c83493ca3262de854dabb38d93 | |
parent | 9ad4812cf873be546dd0fb9a7d2a7512f477a0ee (diff) |
util-linux-ng: delete newer libtool.m4 files
* recipe is now be able to be compiled with older libtool versions
* bump PR fot 2.16
-rw-r--r-- | recipes/util-linux-ng/util-linux-ng_2.16.bb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/recipes/util-linux-ng/util-linux-ng_2.16.bb b/recipes/util-linux-ng/util-linux-ng_2.16.bb index 1cfdc34b5c..78d8150d04 100644 --- a/recipes/util-linux-ng/util-linux-ng_2.16.bb +++ b/recipes/util-linux-ng/util-linux-ng_2.16.bb @@ -1,11 +1,19 @@ require util-linux-ng.inc -PR = "${INC_PR}" +PR = "${INC_PR}.1" SRC_URI += "file://uclibc-compile.patch;patch=1 \ -" + " EXTRA_OECONF += " --enable-libuuid --enable-libblkid \ --disable-fsck" LDFLAGS_append_libc-uclibc = " -lintl" PACKAGES_DYNAMIC += "libuuid*" + +do_configure_prepend_chinook-compat () { + + for i in lt~obsolete.m4 ltsugar.m4 libtool.m4 ltoptions.m4 ltversion.m4 + do + rm ${S}/m4/${i} + done +} |