From d02ec5835693084c86f676b35dd96f44a22ff534 Mon Sep 17 00:00:00 2001 From: Doug Morris Date: Wed, 27 Oct 1999 05:21:12 +0000 Subject: [PATCH] fixed test in Makefiles for LIBTOOL for the case where it doesn't exist --- configure | 2 +- mts/sendmail/Makefile.in | 2 +- mts/smtp/Makefile.in | 2 +- sbr/Makefile.in | 2 +- zotnet/Makefile.in | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index e8cfcad..eb9c392 100755 --- a/configure +++ b/configure @@ -1211,7 +1211,7 @@ if test -n "$RANLIB"; then else echo "$ac_t""no" 1>&6 fi - for ac_prog in gawk mawk nawk awk + for ac_prog in mawk gawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 diff --git a/mts/sendmail/Makefile.in b/mts/sendmail/Makefile.in index e1748f1..f812a2c 100644 --- a/mts/sendmail/Makefile.in +++ b/mts/sendmail/Makefile.in @@ -53,7 +53,7 @@ all: libsend.a libsend.a: $(OBJS) rm -f $@ - if test x$(LIBTOOL) != xno -a x$(GNU_LIBTOOL) = x ; then \ + if test x$(LIBTOOL) != x -a x$(GNU_LIBTOOL) = x ; then \ $(LIBTOOL) -static -c $(OBJS) -o $@ ; \ else \ ar cr $@ `$(LORDER) $(OBJS) | $(TSORT)` ; \ diff --git a/mts/smtp/Makefile.in b/mts/smtp/Makefile.in index a4fc8d9..85ea7ea 100644 --- a/mts/smtp/Makefile.in +++ b/mts/smtp/Makefile.in @@ -56,7 +56,7 @@ all: libsmtp.a libsmtp.a: $(OBJS) rm -f $@ - if test x$(LIBTOOL) != xno -a x$(GNU_LIBTOOL) = x ; then \ + if test x$(LIBTOOL) != x -a x$(GNU_LIBTOOL) = x ; then \ $(LIBTOOL) -static -c $(OBJS) -o $@ ; \ else \ ar cr $@ `$(LORDER) $(OBJS) | $(TSORT)` ; \ diff --git a/sbr/Makefile.in b/sbr/Makefile.in index f77f988..10fb56c 100644 --- a/sbr/Makefile.in +++ b/sbr/Makefile.in @@ -94,7 +94,7 @@ pidstatus.o: sigmsg.h libmh.a: $(OBJS) rm -f $@ - if test x$(LIBTOOL) != xno -a x$(GNU_LIBTOOL) = x ; then \ + if test x$(LIBTOOL) != x -a x$(GNU_LIBTOOL) = x ; then \ $(LIBTOOL) -static -c -o libmh.a $(OBJS) ; \ else \ ar cr libmh.a `$(LORDER) $(OBJS) | $(TSORT)` ; \ diff --git a/zotnet/Makefile.in b/zotnet/Makefile.in index a706bd0..4f43ffb 100644 --- a/zotnet/Makefile.in +++ b/zotnet/Makefile.in @@ -44,7 +44,7 @@ all: all-recursive libzot.a libzot.a: $(OBJS) rm -f $@ - if test x$(LIBTOOL) != xno -a x$(GNU_LIBTOOL) = x ; then \ + if test x$(LIBTOOL) != x -a x$(GNU_LIBTOOL) = x ; then \ $(LIBTOOL) -static -c $(OBJS) -o $@ ; \ else \ ar cr $@ `$(LORDER) $(OBJS) | $(TSORT)` ; \ -- 1.7.10.4