libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

test && test --> test -a


From: Jens Petersen
Subject: test && test --> test -a
Date: 03 Dec 2001 19:13:21 +0900
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Civil Service)

A small trvial thing, but here it is. -Jens


2001-12-03  Jens Petersen  <address@hidden>

        * ltmain.in: Remove last remaining "test ... && test ...".


Index: ltmain.in
===================================================================
RCS file: /cvsroot/libtool/libtool/ltmain.in,v
retrieving revision 1.284
diff -u -r1.284 ltmain.in
--- ltmain.in   2001/11/27 23:10:22     1.284
+++ ltmain.in   2001/12/03 10:04:55
@@ -3287,7 +3287,7 @@
              $show "$mkdir $xdir"
              $run $mkdir "$xdir"
              status=$?
-             if test "$status" -ne 0 && test ! -d "$xdir"; then
+             if test "$status" -ne 0 -a ! -d "$xdir"; then
                exit $status
              fi
              $show "(cd $xdir && $AR x $xabs)"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]