[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2020-11-25 Thread fxcoudert at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

Francois-Xavier Coudert  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED
   Target Milestone|--- |11.0

--- Comment #9 from Francois-Xavier Coudert  ---
Fixed indeed

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2020-11-24 Thread egallager at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

--- Comment #8 from Eric Gallager  ---
(In reply to Francois-Xavier Coudert from comment #7)
> Updated patch:
> https://gcc.gnu.org/pipermail/gcc-patches/2020-November/557728.html

...and it got committed:
https://gcc.gnu.org/pipermail/gcc-patches/2020-November/559336.html
So, ok to close this?

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2020-11-02 Thread fxcoudert at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

--- Comment #7 from Francois-Xavier Coudert  ---
Updated patch:
https://gcc.gnu.org/pipermail/gcc-patches/2020-November/557728.html

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2020-10-31 Thread fxcoudert at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

Francois-Xavier Coudert  changed:

   What|Removed |Added

 CC||fxcoudert at gcc dot gnu.org

--- Comment #6 from Francois-Xavier Coudert  ---
Quoting the @ into @@ in gcc-vers.texi does work:

diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 7b94497b6f2..f2f6452c591 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -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|@|@@|g'` >> $@T
if [ -n "$(PKGVERSION)" ]; then \
  echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@T; \
fi

I've tested this in a build with a source directory with @ in it. It fixes the
build, and produce correct documentation.

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2018-09-09 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

Andrew Pinski  changed:

   What|Removed |Added

 CC||yellowriver2010 at hotmail dot 
com

--- Comment #5 from Andrew Pinski  ---
*** Bug 87265 has been marked as a duplicate of this bug. ***

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2017-12-21 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

--- Comment #4 from Eric Gallager  ---
(In reply to Andrew Pinski from comment #3)
> Maybe the best thing would be reject this during configure.
>

Since I can't think of anything better, agreed.

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2017-09-21 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

--- Comment #3 from Andrew Pinski  ---
Maybe the best thing would be reject this during configure.

This showed up because I enabled in jenkins overlapping builds

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2017-07-22 Thread egallager at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076

Eric Gallager  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Last reconfirmed||2017-07-22
 CC||egallager at gcc dot gnu.org
 Ever confirmed|0   |1

--- Comment #2 from Eric Gallager  ---
Confirming that this error still occurs.

[Bug bootstrap/57076] @ in the src directory name causes failure while building of gcc.info

2013-04-26 Thread sch...@linux-m68k.org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57076



--- Comment #1 from Andreas Schwab sch...@linux-m68k.org 2013-04-26 10:15:31 
UTC ---

The rule to generate gcc-vers.texi needs to replace @ by @@ when writing out

the definition of srcdir.