Commit 3b905056 by Bryce McKinlay Committed by Bryce McKinlay

configure.in: Use different syntax for subdirectory creation.

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

From-SVN: r40955
parent 2bb9b75d
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).
......
......@@ -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}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment