summaryrefslogtreecommitdiff
path: root/libiberty/maint-tool
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2008-07-24 06:35:21 +0000
committerRalf Wildenhues <rwild@gcc.gnu.org>2008-07-24 06:35:21 +0000
commitf59a2f55970ac1d3ec240d8d4594bce7440645ae (patch)
tree527d306dc025db347aa67b0c17dddde6566bca3a /libiberty/maint-tool
parent11522353fe7d3490ecf2877879bd2978b2277926 (diff)
downloadgcc-f59a2f55970ac1d3ec240d8d4594bce7440645ae.tar.gz
maint-tool (deps): Output config.h instead of stamp-h.
libiberty/ * maint-tool (deps): Output config.h instead of stamp-h. * Makefile.in: Rebuild deps. (maintainer-clean-subdir): Depend on stamp-h rather than config.h. Reverts 2007-07-11 change. From-SVN: r138110
Diffstat (limited to 'libiberty/maint-tool')
-rw-r--r--libiberty/maint-tool4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/maint-tool b/libiberty/maint-tool
index a460b5570e5..e6e87070d37 100644
--- a/libiberty/maint-tool
+++ b/libiberty/maint-tool
@@ -226,6 +226,7 @@ sub deps {
$mine{$f} = "\$(INCDIR)/$f";
$deps{$f} = join(' ', &deps_for("$incdir/$f"));
}
+ $mine{'config.h'} = "config.h";
opendir(INC, $srcdir);
while ($f = readdir INC) {
@@ -233,8 +234,7 @@ sub deps {
$mine{$f} = "\$(srcdir)/$f";
$deps{$f} = join(' ', &deps_for("$srcdir/$f"));
}
-
- $mine{'config.h'} = "stamp-h";
+ $mine{'config.h'} = "config.h";
open(IN, "$srcdir/Makefile.in");
open(OUT, ">$srcdir/Makefile.tmp");