3b3128196e
Tested by: numerous package build runs Approved by: portmgr Thanks to: des, kris, linimon, pav
26 lines
859 B
Bash
26 lines
859 B
Bash
Index: detect-autoconf.sh
|
|
===================================================================
|
|
RCS file: /cvs/kde/kde-common/admin/detect-autoconf.sh,v
|
|
retrieving revision 1.6
|
|
diff -u -r1.6 detect-autoconf.sh
|
|
--- admin/detect-autoconf.sh 30 Nov 2002 02:48:03 -0000 1.6
|
|
+++ admin/detect-autoconf.sh 29 Aug 2003 11:31:32 -0000
|
|
@@ -25,6 +25,8 @@
|
|
AUTOCONF="`$WHICH autoconf-2.52`"
|
|
elif test -x "`$WHICH autoconf2.50`" ; then
|
|
AUTOCONF="`$WHICH autoconf2.50`"
|
|
+ elif test -x "`$WHICH autoconf-2.59`" ; then
|
|
+ AUTOCONF="`$WHICH autoconf-2.59`"
|
|
fi
|
|
}
|
|
|
|
@@ -46,6 +48,9 @@
|
|
AUTOHEADER="`$WHICH autoheader-2.52`"
|
|
elif test -x "`$WHICH autoheader2.50`" ; then
|
|
AUTOHEADER="`$WHICH autoheader2.50`"
|
|
+ elif test -x "`$WHICH autoheader-2.59`" ; then
|
|
+ AUTOHEADER="`$WHICH autoheader-2.59`"
|
|
+ AUTOM4TE="`$WHICH autom4te-2.59`"
|
|
fi
|
|
}
|
|
|