Skip to content

Commit

Permalink
gcc: quote characters in texi source
Browse files Browse the repository at this point in the history
gcc/ChangeLog:

	PR bootstrap/57076
	* Makefile.in (gcc-vers.texi): Quote @, { and }.
  • Loading branch information
fxcoudert committed Nov 2, 2020
1 parent 6bcbcea commit 034db20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -3286,7 +3286,7 @@ gcc-vers.texi: $(BASEVER) $(DEVPHASE)
then echo "@set DEVELOPMENT"; \
else echo "@clear DEVELOPMENT"; \
fi) > $@T
$(build_file_translate) echo @set srcdir $(abs_srcdir) >> $@T
$(build_file_translate) echo @set srcdir `echo $(abs_srcdir) | sed -e 's|\\([@{}]\\)|@\\1|g'` >> $@T
if [ -n "$(PKGVERSION)" ]; then \
echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@T; \
fi
Expand Down

0 comments on commit 034db20

Please sign in to comment.