summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2010-03-31 19:13:25 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2010-03-31 19:13:25 +0000
commitd42f6d4a790c2a522d653b75309b452f18deb6e3 (patch)
treeeb799c89b4f2a1aa709610fceb3535d82dfac597
parent18dd8f1b9e35084cb594be2172e8503343e311ea (diff)
* manual/Makefile (stamp-pkgvers): Substitute @@ for @ ineglibc-2_10
REPORT_BUGS_TO. git-svn-id: svn://svn.eglibc.org/branches/eglibc-2_10@10152 7b3dc134-2b1b-0410-93df-9e9f96275f8d
-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 $@