diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-03-28 21:45:06 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-03-28 21:45:06 +0200 |
commit | f055b266f11f8b72c60cf3b46bf081aaf97f5f6d (patch) | |
tree | 955cfddd3097cc42136a61d574cf0fd8792d7b7c /package/Makefile.autotools.in | |
parent | 2c97608387f586f361e81a242d8838b9481369f7 (diff) | |
download | buildroot-novena-f055b266f11f8b72c60cf3b46bf081aaf97f5f6d.tar.gz buildroot-novena-f055b266f11f8b72c60cf3b46bf081aaf97f5f6d.zip |
Makefile.autotools.in: add libtool v2.4 support
Packages (like avahi) are now using libtool 2.4, so extend the libtool
handling to support those as well.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/Makefile.autotools.in')
-rw-r--r-- | package/Makefile.autotools.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index d445348d2..88a06ea22 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -145,6 +145,8 @@ define LIBTOOL_PATCH_HOOK toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v1.5.patch; \ elif test $$$${ltmain_version} = "2.2"; then\ toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.2.patch; \ + elif test $$$${ltmain_version} = "2.4"; then\ + toolchain/patch-kernel.sh $$$${i%/*} package buildroot-libtool-v2.4.patch; \ fi \ done \ fi |