public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild.
@ 2004-06-20 14:51 pluto at pld-linux dot org
  2004-06-20 17:43 ` [Bug libc/229] " pluto at pld-linux dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: pluto at pld-linux dot org @ 2004-06-20 14:51 UTC (permalink / raw)
  To: glibc-bugs

# patch 
http://cvs.pld-linux.org/cgi-bin/cvsweb/SOURCES/glibc-csu-quotes.patch?rev=1.1

-- 
           Summary: gcc repoers an error (invalid quotes) in csu/version-
                    info.h during crossbuild.
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: gotom at debian dot or dot jp
        ReportedBy: pluto at pld-linux dot org
                CC: glibc-bugs at sources dot redhat dot com
 GCC build triplet: sparc-pld-linux
  GCC host triplet: sparc-pld-linux
GCC target triplet: sparc-pld-linux


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
@ 2004-06-20 17:43 ` pluto at pld-linux dot org
  2004-06-21 16:33 ` nickc at redhat dot com
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pluto at pld-linux dot org @ 2004-06-20 17:43 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From pluto at pld-linux dot org  2004-06-20 17:43 -------
# without fix... 
# cat version-info.h 
 
"Compiled on a Linux 2.6.7 system on 2004-06-20. 
" 
"Available extensions: 
" 
"       GNU libio by Per Bothner\n" 
"       crypt add-on version 2.1 by Michael Glad and others\n" 
"       NPTL 0.61 by Ulrich Drepper\n" 
"       BIND-8.2.3-T5B\n" 
"       NIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n" 
 
__build/csu/version-info.h:1: error: missing terminating " character 
__build/csu/version-info.h:2: error: missing terminating " character 
__build/csu/version-info.h:3: error: missing terminating " character 
__build/csu/version-info.h:4: error: missing terminating " character 
version.c:40: error: syntax error before string constant 
 
# with fixed makefile... 
# cat version-info.h 
 
"Compiled on a Linux 2.6.7 system on 2004-06-20." 
"" 
"Available extensions:" 
"" 
"       GNU libio by Per Bothner\n" 
"       crypt add-on version 2.1 by Michael Glad and others\n" 
"       NPTL 0.61 by Ulrich Drepper\n" 
"       BIND-8.2.3-T5B\n" 
"       NIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n" 

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
  2004-06-20 17:43 ` [Bug libc/229] " pluto at pld-linux dot org
@ 2004-06-21 16:33 ` nickc at redhat dot com
  2004-06-22  8:45 ` qboosh at pld-linux dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: nickc at redhat dot com @ 2004-06-21 16:33 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From nickc at redhat dot com  2004-06-21 16:33 -------
*** Bug 224 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |akss at nsk dot ru


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
  2004-06-20 17:43 ` [Bug libc/229] " pluto at pld-linux dot org
  2004-06-21 16:33 ` nickc at redhat dot com
@ 2004-06-22  8:45 ` qboosh at pld-linux dot org
  2004-06-24 12:40 ` [Bug libc/229] gcc reports " schwab at suse dot de
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: qboosh at pld-linux dot org @ 2004-06-22  8:45 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From qboosh at pld-linux dot org  2004-06-22 08:45 -------
This problem is actually specific to shell (/bin/sh==pdksh in case of PLD),
not platform or crossbuilding.
Current csu/Makefile works only with bash (which doesn't expand escapes in echo
without -e - i.e. is not SUS-compliant here...)

Here is version of patch which works both with ksh and bash (and preserves
newlines like in original code):
http://cvs.pld-linux.org/cgi-bin/cvsweb/SOURCES/Attic/glibc-make.patch?rev=1.2

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc reports an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
                   ` (2 preceding siblings ...)
  2004-06-22  8:45 ` qboosh at pld-linux dot org
@ 2004-06-24 12:40 ` schwab at suse dot de
  2004-06-25  3:28 ` akss at nsk dot ru
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: schwab at suse dot de @ 2004-06-24 12:40 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|gcc repoers an error        |gcc reports an error
                   |(invalid quotes) in         |(invalid quotes) in
                   |csu/version-info.h during   |csu/version-info.h during
                   |crossbuild.                 |crossbuild.


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc reports an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
                   ` (3 preceding siblings ...)
  2004-06-24 12:40 ` [Bug libc/229] gcc reports " schwab at suse dot de
@ 2004-06-25  3:28 ` akss at nsk dot ru
  2004-08-10  2:37 ` drepper at redhat dot com
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: akss at nsk dot ru @ 2004-06-25  3:28 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|akss at nsk dot ru          |


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc reports an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
                   ` (4 preceding siblings ...)
  2004-06-25  3:28 ` akss at nsk dot ru
@ 2004-08-10  2:37 ` drepper at redhat dot com
  2004-08-30 20:17 ` qboosh at pld-linux dot org
  2004-08-31  6:23 ` aj at suse dot de
  7 siblings, 0 replies; 9+ messages in thread
From: drepper at redhat dot com @ 2004-08-10  2:37 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2004-08-10 02:37 -------
This last patch is not better than what we have now.  You complain about missing
SUS compliance of the script and use echo with an option yourself.  The SUS echo
must not have any option.

You can correct your patch by testing for bash, and if bash is used, use

shopt -s xpg_echo
...
shopt -u xpg_echo

around the echos in the your patch.

Please change your patch and test it.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |drepper at redhat dot com
             Status|NEW                         |WAITING


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc reports an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
                   ` (5 preceding siblings ...)
  2004-08-10  2:37 ` drepper at redhat dot com
@ 2004-08-30 20:17 ` qboosh at pld-linux dot org
  2004-08-31  6:23 ` aj at suse dot de
  7 siblings, 0 replies; 9+ messages in thread
From: qboosh at pld-linux dot org @ 2004-08-30 20:17 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From qboosh at pld-linux dot org  2004-08-30 20:17 -------
It's already fixed in CVS using printf instead echo.
You can close this bug, it's resolved.

-- 


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libc/229] gcc reports an error (invalid quotes) in csu/version-info.h during crossbuild.
  2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
                   ` (6 preceding siblings ...)
  2004-08-30 20:17 ` qboosh at pld-linux dot org
@ 2004-08-31  6:23 ` aj at suse dot de
  7 siblings, 0 replies; 9+ messages in thread
From: aj at suse dot de @ 2004-08-31  6:23 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From aj at suse dot de  2004-08-31 06:23 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |FIXED


http://sources.redhat.com/bugzilla/show_bug.cgi?id=229

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2004-08-31  6:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-20 14:51 [Bug libc/229] New: gcc repoers an error (invalid quotes) in csu/version-info.h during crossbuild pluto at pld-linux dot org
2004-06-20 17:43 ` [Bug libc/229] " pluto at pld-linux dot org
2004-06-21 16:33 ` nickc at redhat dot com
2004-06-22  8:45 ` qboosh at pld-linux dot org
2004-06-24 12:40 ` [Bug libc/229] gcc reports " schwab at suse dot de
2004-06-25  3:28 ` akss at nsk dot ru
2004-08-10  2:37 ` drepper at redhat dot com
2004-08-30 20:17 ` qboosh at pld-linux dot org
2004-08-31  6:23 ` aj at suse dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).