summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libc/ChangeLog.eglibc5
-rw-r--r--libc/manual/Makefile3
2 files changed, 7 insertions, 1 deletions
diff --git a/libc/ChangeLog.eglibc b/libc/ChangeLog.eglibc
index b470cc9fa..0f53da385 100644
--- a/libc/ChangeLog.eglibc
+++ b/libc/ChangeLog.eglibc
@@ -1,3 +1,8 @@
+2010-03-31 Joseph Myers <joseph@codesourcery.com>
+
+ * manual/Makefile (stamp-pkgvers): Substitute @@ for @ in
+ REPORT_BUGS_TO.
+
2010-03-28 Joseph Myers <joseph@codesourcery.com>
* csu/Makefile: Include option-groups.mak.
diff --git a/libc/manual/Makefile b/libc/manual/Makefile
index 3b1785da3..90b54d915 100644
--- a/libc/manual/Makefile
+++ b/libc/manual/Makefile
@@ -114,7 +114,8 @@ stamp-libm-err: libm-err-tab.pl $(wildcard $(foreach dir,$(sysdirs),\
pkgvers.texi: stamp-pkgvers
stamp-pkgvers:
echo "@set PKGVERSION $(PKGVERSION)" > pkgvers-tmp
- echo "@set REPORT_BUGS_TO $(REPORT_BUGS_TO)" >> pkgvers-tmp
+ echo "@set REPORT_BUGS_TO $(REPORT_BUGS_TO)" \
+ | sed -e 's/@/@@/g' >> pkgvers-tmp
$(move-if-change) pkgvers-tmp pkgvers.texi
touch $@