aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2007-01-27 19:50:38 +0000
committerTom Tromey <tromey@redhat.com>2007-01-27 19:50:38 +0000
commitd5b6eb9b7feaa17d82acfb7c958a751fa7a6536a (patch)
tree2e58a8722c876422b6269799e5f24d9bef9a0ba4 /config
parentc26a79cdb7531faf75ecf38c4ca9b3ab3b65f51a (diff)
config
2007-01-27 Paolo Bonzini <bonzini@gnu.org> * depstand.m4 (ZW_CREATE_DEPDIR): Use mkinstalldirs to make directory. libcpp * configure: Rebuilt. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@121237 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog5
-rw-r--r--config/depstand.m45
2 files changed, 8 insertions, 2 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 91dc5e2a26c..f79f84a5a29 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-27 Paolo Bonzini <bonzini@gnu.org>
+
+ * depstand.m4 (ZW_CREATE_DEPDIR): Use mkinstalldirs to make
+ directory.
+
2007-01-23 Richard Guenther <rguenther@suse.de>
PR bootstrap/30541
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])
])