X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libiberty%2Fmaint-tool;h=a460b5570e5c42e9c3c5b69bd23881453cc373a5;hb=215f7c71d1c7cece14fe54cea70d2a1dfda6838d;hp=5584d9b55948939834eb543c06cd2ab5a442ca21;hpb=95b8d1bcbb4add3edbf7f6e54ecf9a9b2a0955e4;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libiberty/maint-tool b/libiberty/maint-tool index 5584d9b5594..a460b5570e5 100644 --- a/libiberty/maint-tool +++ b/libiberty/maint-tool @@ -1,7 +1,7 @@ #!/usr/bin/perl # -*- perl -*- -# Copyright (C) 2001 +# Copyright (C) 2001, 2007 # Free Software Foundation # # This file is part of the libiberty library. @@ -226,7 +226,6 @@ 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) { @@ -234,7 +233,8 @@ sub deps { $mine{$f} = "\$(srcdir)/$f"; $deps{$f} = join(' ', &deps_for("$srcdir/$f")); } - $mine{'config.h'} = "config.h"; + + $mine{'config.h'} = "stamp-h"; open(IN, "$srcdir/Makefile.in"); open(OUT, ">$srcdir/Makefile.tmp");