blob: b87cf3d715b59ea4480bce3e279ffd6707cd2418 (
plain) (
blame)
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
|
--- parts/appwizard/common/admin/detect-autoconf.sh.orig Wed Mar 3 22:22:59 2004
+++ parts/appwizard/common/admin/detect-autoconf.sh Wed Mar 3 21:47:49 2004
@@ -17,6 +17,8 @@
AUTOCONF="`$WHICH autoconf-2.5x`"
elif test -x "`$WHICH autoconf-2.57 2>/dev/null`" ; then
AUTOCONF="`$WHICH autoconf-2.57`"
+ elif test -x "`$WHICH autoconf257 2>/dev/null`" ; then
+ AUTOCONF="`$WHICH autoconf257`"
elif test -x "`$WHICH autoconf-2.56 2>/dev/null`" ; then
AUTOCONF="`$WHICH autoconf-2.56`"
elif test -x "`$WHICH autoconf-2.55 2>/dev/null`" ; then
@@ -42,6 +44,9 @@
elif test -x "`$WHICH autoheader-2.57 2>/dev/null`" ; then
AUTOHEADER="`$WHICH autoheader-2.57`"
AUTOM4TE="`$WHICH autom4te-2.57`"
+ elif test -x "`$WHICH autoheader257 2>/dev/null`" ; then
+ AUTOHEADER="`$WHICH autoheader257`"
+ AUTOM4TE="`$WHICH autom4te257`"
elif test -x "`$WHICH autoheader-2.56 2>/dev/null`" ; then
AUTOHEADER="`$WHICH autoheader-2.56`"
AUTOM4TE="`$WHICH autom4te-2.56`"
@@ -72,6 +77,9 @@
elif test -x "`$WHICH automake-1.7 2>/dev/null`" ; then
AUTOMAKE="`$WHICH automake-1.7`"
ACLOCAL="`$WHICH aclocal-1.7`"
+ elif test -x "`$WHICH automake17 2>/dev/null`" ; then
+ AUTOMAKE="`$WHICH automake17`"
+ ACLOCAL="`$WHICH aclocal17`"
fi
if test -n "$UNSERMAKE"; then
AUTOMAKE="$UNSERMAKE"
|