diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-07-28 03:27:46 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-07-28 03:27:46 +0000 |
commit | df4b5a9c5a4d063ad09aea1755cae0dc778853c5 (patch) | |
tree | db5f2d82bce392d05b3f7e053ed6f82765d26743 /configure.in | |
parent | e816a74f802e8d7491f6a887612e0879c84c4cdf (diff) | |
download | cygnal-df4b5a9c5a4d063ad09aea1755cae0dc778853c5.tar.gz cygnal-df4b5a9c5a4d063ad09aea1755cae0dc778853c5.tar.bz2 cygnal-df4b5a9c5a4d063ad09aea1755cae0dc778853c5.zip |
* Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
creating target and build subdirs to build all parent dirs as needed.
* Makefile.in: Rebuild.
* configure.in: Don't build dirs explicitly here.
* configure: Rebuild.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/configure.in b/configure.in index 6c22addc7..a4781564c 100644 --- a/configure.in +++ b/configure.in @@ -192,27 +192,9 @@ else is_cross_compiler=yes fi -# Find the build and target subdirs. +# Find the build and target subdir names. GCC_TOPLEV_SUBDIRS -if test ! -d ${target_subdir} ; then - if mkdir ${target_subdir} ; then true - else - echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${target_subdir}" 1>&2 - exit 1 - fi -fi - -if test x"${build_alias}" != x"${host}" ; then - if test ! -d ${build_subdir} ; then - if mkdir ${build_subdir} ; then true - else - echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${build_subdir}" 1>&2 - exit 1 - fi - fi -fi - # Skipdirs are removed silently. skipdirs= # Noconfigdirs are removed loudly. |