aboutsummaryrefslogtreecommitdiffstats
path: root/meta-cgl-common/recipes-cgl/heartbeat/heartbeat/heartbeat-bootstrap-libtool.patch
blob: bcddab2db8d69ca748f6bd8f09c0950da2ba5065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Index: Heartbeat-3-0-7e3a82377fa8/bootstrap
===================================================================
--- Heartbeat-3-0-7e3a82377fa8.orig/bootstrap
+++ Heartbeat-3-0-7e3a82377fa8/bootstrap
@@ -173,23 +173,22 @@ ln -s `which $automake` ./automake
 
 # Check for Libtool
 pkg="libtool"
-for command in libtool libtool14 libtool15 glibtool
+for command in libtoolize libtoolize14 libtoolize15 glibtoolize
 do
   URL=$gnu/$pkg/
   if
     testProgram $command
   then
     : OK $pkg is installed
-    libtool=$command
-    libtoolize=`echo  "$libtool" | sed -e 's/libtool/libtoolize/'`
+    libtoolize=$command
   fi
 done
 
 # Check to see if we got a valid command.
 if 
-    $libtool --version </dev/null >/dev/null 2>&1
+    $libtoolize --version </dev/null >/dev/null 2>&1
 then
-    echo "Libtool package $libtool found."
+    echo "Libtool package $libtoolize found."
 else
     RC=$?
     cat <<-EOF >&2
@@ -200,10 +199,6 @@ else
 	EOF
 fi
 
-# Create local copy so that the incremental updates will work.
-rm -f          ./libtool
-ln -s `which $libtool` ./libtool
-
 case $RC in
   0)	;;
   *)	exit $RC;;
@@ -217,7 +212,7 @@ oneline() {
   read x; echo "$x"
 }
 
-LT_version=`$libtool --version | oneline | sed -e 's%^[^0-9]*%%' -e s'% .*%%'`
+LT_version=`$libtoolize --version | oneline | sed -e 's%^[^0-9]*%%' -e s'% .*%%'`
 LT_majvers=`echo "$LT_version" | sed -e 's%\..*%%'`
 LT_minvers=`echo "$LT_version" | sed -e 's%^[^.]*\.%%' `
 LT_minnum=`echo  "$LT_minvers" | sed -e 's%[^0-9].*%%'`