diff options
author | Titus von Boxberg" <titus@v9g.de> | 2011-08-22 09:40:31 +0200 |
---|---|---|
committer | Titus von Boxberg <titus@v9g.de> | 2011-08-22 09:40:31 +0200 |
commit | 6b9c9e74b2ecd86b97af25ae9fdb06538bc78b86 (patch) | |
tree | 2f1bc22ff931df94ec76b32cc087c421675b1de0 /Makefile.in | |
parent | 9e5e41568c7afec93d3cb7991481ba9dc10b2fa3 (diff) | |
download | crosstool-ng-6b9c9e74b2ecd86b97af25ae9fdb06538bc78b86.tar.gz crosstool-ng-6b9c9e74b2ecd86b97af25ae9fdb06538bc78b86.tar.bz2 crosstool-ng-6b9c9e74b2ecd86b97af25ae9fdb06538bc78b86.zip |
configure: require libtoolize, create wrapper to it
libtoolize must be checked_for and there needs to be a wrapper
that points to GNU libtoolize since that may be installed
as glibtoolize.
This fixes a problem with building Cloog/PPL that was
Reported-by: "Pierrick Brossin" <pierrick@bs-network.net>
Signed-off-by: "Titus von Boxberg" <titus@v9g.de>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index c59ea649..76b0a22e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -50,16 +50,17 @@ DATE := @@DATE@@ LOCAL := @@LOCAL@@ # Paths found by ./configure -install:= @@install@@ -bash := @@bash@@ -grep := @@grep@@ -make := @@make@@ -sed := @@sed@@ -libtool:= @@libtool@@ -objcopy:= @@objcopy@@ -objdump:= @@objdump@@ -readelf:= @@readelf@@ -patch := @@patch@@ +install := @@install@@ +bash := @@bash@@ +grep := @@grep@@ +make := @@make@@ +sed := @@sed@@ +libtool := @@libtool@@ +libtoolize:= @@libtoolize@@ +objcopy := @@objcopy@@ +objdump := @@objdump@@ +readelf := @@readelf@@ +patch := @@patch@@ # config options to push down to kconfig KCONFIG:= @@KCONFIG@@ @@ -183,6 +184,7 @@ paths.mk: FORCE echo "export make=$(make)"; \ echo "export sed=$(sed)"; \ echo "export libtool=$(libtool)"; \ + echo "export libtoolize=$(libtoolize)"; \ echo "export objcopy=$(objcopy)"; \ echo "export objdump=$(objdump)"; \ echo "export readelf=$(readelf)"; \ |