diff options
author | maxim <maxim@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2011-10-11 04:45:07 +0000 |
---|---|---|
committer | maxim <maxim@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2011-10-11 04:45:07 +0000 |
commit | 91b4be71461f78cabe1fb5f164cea71b60e9e98a (patch) | |
tree | 9017ecccaf82f78f62ec35a88a4347000b3d21ec /libc/manual | |
parent | 73d20a54b5e64d50ab256299f41e70a2ea5b40eb (diff) | |
download | eglibc2-91b4be71461f78cabe1fb5f164cea71b60e9e98a.tar.gz |
2011-10-07 Michael Hope <michael.hope@linaro.org>
* manual/Makefile (stamp-pkgvers): Escape PKGVERSION. Fix the
escaping of REPORT_BUGS_TO.
git-svn-id: svn://svn.eglibc.org/trunk@15506 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/manual')
-rw-r--r-- | libc/manual/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/manual/Makefile b/libc/manual/Makefile index 87393d7b6..7187ab9ff 100644 --- a/libc/manual/Makefile +++ b/libc/manual/Makefile @@ -116,9 +116,9 @@ stamp-libm-err: libm-err-tab.pl $(wildcard $(foreach dir,$(sysdirs),\ # Package version and bug reporting URL. pkgvers.texi: stamp-pkgvers stamp-pkgvers: - echo "@set PKGVERSION $(PKGVERSION)" > pkgvers-tmp - echo "@set REPORT_BUGS_TO $(REPORT_BUGS_TO)" \ - | sed -e 's/@/@@/g' >> pkgvers-tmp + echo "@set PKGVERSION $(subst @,@@,$(PKGVERSION))" > pkgvers-tmp + echo "@set REPORT_BUGS_TO $(subst @,@@,$(REPORT_BUGS_TO))" \ + >> pkgvers-tmp $(move-if-change) pkgvers-tmp pkgvers.texi touch $@ |