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:
parent
2bb9b75d52
commit
3b905056f9
@ -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
9
libffi/configure
vendored
@ -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}
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user