aboutsummaryrefslogtreecommitdiff
path: root/libiberty/maint-tool
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/maint-tool')
-rw-r--r--libiberty/maint-tool6
1 files changed, 3 insertions, 3 deletions
diff --git a/libiberty/maint-tool b/libiberty/maint-tool
index 5584d9b..a460b55 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");