configure.in: Use different syntax for subdirectory creation.
authorBryce McKinlay <bryce@albatross.co.nz>
Thu, 29 Mar 2001 00:03:27 +0000 (00:03 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Thu, 29 Mar 2001 00:03:27 +0000 (01:03 +0100)
       * configure.in: Use different syntax for subdirectory creation.
       * configure: Rebuilt.

From-SVN: r40955

libffi/ChangeLog
libffi/configure
libffi/configure.in

index 1559e39457939c21b20dfbb074d9da929ccf5f8b..00cd4b9bf6ba0c858f8111c338810c69039b94b8 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-29  Bryce McKinlay  <bryce@albatross.co.nz>
+
+       * configure.in: Use different syntax for subdirectory creation.
+       * configure: Rebuilt.
+
 2001-03-27  Jon Beniston  <jon@beniston.com>
 
        * configure.in: Added X86_WIN32 target (Win32, CygWin, MingW).
index 5124d1f5fabe9525b062507172c803569ef50594..c909e61d9035ff5fef448364966c6be5a9e4d132 100755 (executable)
@@ -3851,10 +3851,5 @@ test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
 
 
 # Make target subdirectories if required.
-if ! test -d src; then
-  mkdir src
-fi
-
-if ! test -d src/${TARGETDIR}; then
-  mkdir src/${TARGETDIR}
-fi
+test -d src || mkdir src
+test -d src/${TARGETDIR} || mkdir src/${TARGETDIR}
index e7af4785302e56c0d865238c70b436de9bed0abd..a1bddd1f088cccaa470e834771b0745128d2c7b3 100644 (file)
@@ -145,10 +145,5 @@ fi
 )
 
 # Make target subdirectories if required.
-if ! test -d src; then
-  mkdir src
-fi
-
-if ! test -d src/${TARGETDIR}; then
-  mkdir src/${TARGETDIR}
-fi
+test -d src || mkdir src
+test -d src/${TARGETDIR} || mkdir src/${TARGETDIR}