projects
/
mmh
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61fba03
)
If $LIBTOOL is empty we should not try to run it.
author
Kimmo Suominen
<kimmo@suominen.com>
Sun, 16 Jul 2000 06:01:28 +0000
(06:01 +0000)
committer
Kimmo Suominen
<kimmo@suominen.com>
Sun, 16 Jul 2000 06:01:28 +0000
(06:01 +0000)
This gets rid of the "--version: not found" error.
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
c264d6e
..
d80a2d2
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-14,11
+14,13
@@
dnl define a macro or two
dnl ---------------------
AC_DEFUN(NMH_PROG_GNU_LIBTOOL, [
+if test -n "$LIBTOOL" ; then
tmptest=`$LIBTOOL --version 2>&1 | grep GNU`
if test x"$tmptest" != x ; then
GNU_LIBTOOL=1
AC_SUBST(GNU_LIBTOOL)dnl
fi
+fi
] )