diff options
author | Tom Tromey <tromey@gcc.gnu.org> | 2007-01-27 19:50:38 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-01-27 19:50:38 +0000 |
commit | 024abeb327c16c7197cf979fb252fadca61386a2 (patch) | |
tree | 2e58a8722c876422b6269799e5f24d9bef9a0ba4 /config/depstand.m4 | |
parent | e8d366ec6bd731a594b9ba266f6720bc5274f830 (diff) | |
download | gcc-024abeb327c16c7197cf979fb252fadca61386a2.tar.gz |
depstand.m4 (ZW_CREATE_DEPDIR): Use mkinstalldirs to make directory.
config
2007-01-27 Paolo Bonzini <bonzini@gnu.org>
* depstand.m4 (ZW_CREATE_DEPDIR): Use mkinstalldirs to make
directory.
libcpp
* configure: Rebuilt.
From-SVN: r121237
Diffstat (limited to 'config/depstand.m4')
-rw-r--r-- | config/depstand.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/depstand.m4 b/config/depstand.m4 index 8f936e0c263..beaf2cc7bf0 100644 --- a/config/depstand.m4 +++ b/config/depstand.m4 @@ -1,6 +1,6 @@ ## -*- Autoconf -*- -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation @@ -132,5 +132,6 @@ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl # As AM_SET_DEPDIR, but also create the directory at config.status time. AC_DEFUN([ZW_CREATE_DEPDIR], [AC_REQUIRE([AM_SET_DEPDIR])dnl -AC_CONFIG_COMMANDS([depdir], [mkdir $DEPDIR], [DEPDIR=$DEPDIR]) +AC_CONFIG_COMMANDS([depdir], [$SHELL $ac_aux_dir/mkinstalldirs $DEPDIR], + [ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR]) ]) |