configure.in: Use different syntax for subdirectory creation.

* configure.in: Use different syntax for subdirectory creation.
       * configure: Rebuilt.

From-SVN: r40955
This commit is contained in:
Bryce McKinlay 2001-03-29 00:03:27 +00:00 committed by Bryce McKinlay
parent 2bb9b75d52
commit 3b905056f9
3 changed files with 9 additions and 14 deletions

View 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).

9
libffi/configure vendored
View File

@ -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}

View 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}