diff options
author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-24 06:35:21 +0000 |
---|---|---|
committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-24 06:35:21 +0000 |
commit | a68717dcf3130e47b2e1448347b16dd106ec4acb (patch) | |
tree | 527d306dc025db347aa67b0c17dddde6566bca3a /libiberty/maint-tool | |
parent | 1f10095db92afb9c54ec033786bad1c4a91a1781 (diff) | |
download | gcc-a68717dcf3130e47b2e1448347b16dd106ec4acb.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138110 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/maint-tool')
-rw-r--r-- | libiberty/maint-tool | 4 |
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"); |