summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/opth-gen.awk2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c347d43fa74..d8a7801ae7e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-10 Wolfgang Gellerich <gellerich@de.ibm.com>
+
+ * opth-gen.awk: Fixed generation of comment stating the origin
+ of options.h
+
2007-10-10 Kazu Hirata <kazu@codesourcery.com>
Revert:
diff --git a/gcc/opth-gen.awk b/gcc/opth-gen.awk
index dbd019191b6..f096112cc90 100644
--- a/gcc/opth-gen.awk
+++ b/gcc/opth-gen.awk
@@ -55,7 +55,7 @@ BEGIN {
# Dump out an enumeration into a .h file.
# Combine the flags of duplicate options.
END {
-print "/* This file is auto-generated by opts.sh. */"
+print "/* This file is auto-generated by opth-gen.awk. */"
print ""
print "#ifndef OPTIONS_H"
print "#define OPTIONS_H"