public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/27501]  New: Shell compatibility problem
@ 2006-05-08 18:00 aldot at gcc dot gnu dot org
  2006-05-08 18:03 ` [Bug bootstrap/27501] " aldot at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: aldot at gcc dot gnu dot org @ 2006-05-08 18:00 UTC (permalink / raw)
  To: gcc-bugs

gmake[3]: Entering directory `/usr/local/scratch/obj/gcc-4.2/gcc'
TARGET_CPU_DEFAULT="" \
HEADERS="auto-host.h ansidecl.h" DEFINES="USE_COLLECT2" \
/bin/sh ../../../src/gcc-4.2/gcc/mkconfig.sh config.h
../../../src/gcc-4.2/gcc/mkconfig.sh: test: unknown operator ==
gmake[3]: *** [cs-config.h] Error 1


This test only knows operator '='

# sh         
# bar=foo
# test x"$bar" == baz ; echo $?
test: unknown operator ==
# test x"$bar" = baz ; echo $?
1
# test x"$bar" = x"foo" ; echo $?
0


-- 
           Summary: Shell compatibility problem
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: aldot at gcc dot gnu dot org
 GCC build triplet: alphaev56-dec-osf5.1a
  GCC host triplet: alphaev56-dec-osf5.1a
GCC target triplet: alphaev56-dec-osf5.1a


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


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

* [Bug bootstrap/27501] Shell compatibility problem
  2006-05-08 18:00 [Bug bootstrap/27501] New: Shell compatibility problem aldot at gcc dot gnu dot org
@ 2006-05-08 18:03 ` aldot at gcc dot gnu dot org
  2006-05-08 18:06 ` [Bug bootstrap/27501] [4.2 Regression] " pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: aldot at gcc dot gnu dot org @ 2006-05-08 18:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from aldot at gcc dot gnu dot org  2006-05-08 18:02 -------
Created an attachment (id=11411)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11411&action=view)
use operator '=' instead of '==' for test

Bootstrap is still in progress, but a manual test suggests that this should fix
it.


-- 


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


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

* [Bug bootstrap/27501] [4.2 Regression] Shell compatibility problem
  2006-05-08 18:00 [Bug bootstrap/27501] New: Shell compatibility problem aldot at gcc dot gnu dot org
  2006-05-08 18:03 ` [Bug bootstrap/27501] " aldot at gcc dot gnu dot org
@ 2006-05-08 18:06 ` pinskia at gcc dot gnu dot org
  2006-05-09  8:02 ` aldot at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-08 18:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-05-08 18:06 -------
Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |build
   Last reconfirmed|0000-00-00 00:00:00         |2006-05-08 18:06:24
               date|                            |
            Summary|Shell compatibility problem |[4.2 Regression] Shell
                   |                            |compatibility problem
   Target Milestone|---                         |4.2.0


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


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

* [Bug bootstrap/27501] [4.2 Regression] Shell compatibility problem
  2006-05-08 18:00 [Bug bootstrap/27501] New: Shell compatibility problem aldot at gcc dot gnu dot org
  2006-05-08 18:03 ` [Bug bootstrap/27501] " aldot at gcc dot gnu dot org
  2006-05-08 18:06 ` [Bug bootstrap/27501] [4.2 Regression] " pinskia at gcc dot gnu dot org
@ 2006-05-09  8:02 ` aldot at gcc dot gnu dot org
  2006-05-14 10:49 ` aldot at gcc dot gnu dot org
  2006-05-14 19:56 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: aldot at gcc dot gnu dot org @ 2006-05-09  8:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from aldot at gcc dot gnu dot org  2006-05-09 08:02 -------
2006-05-09  Bernhard Fischer  <aldot@gcc.gnu.org>

        PR/27501
        * mkconfig.sh: Use operator '=' for test


This patch fixes the build failure on OSF5.1a,
please apply.


-- 


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


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

* [Bug bootstrap/27501] [4.2 Regression] Shell compatibility problem
  2006-05-08 18:00 [Bug bootstrap/27501] New: Shell compatibility problem aldot at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2006-05-09  8:02 ` aldot at gcc dot gnu dot org
@ 2006-05-14 10:49 ` aldot at gcc dot gnu dot org
  2006-05-14 19:56 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: aldot at gcc dot gnu dot org @ 2006-05-14 10:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from aldot at gcc dot gnu dot org  2006-05-14 10:49 -------
Subject: Bug 27501

Author: aldot
Date: Sun May 14 10:48:49 2006
New Revision: 113758

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113758
Log:
2006-05-14  Bernhard Fischer  <aldot@gcc.gnu.org>

        PR 27501
        * mkconfig.sh: Use operator = instead of == for test.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/mkconfig.sh


-- 


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


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

* [Bug bootstrap/27501] [4.2 Regression] Shell compatibility problem
  2006-05-08 18:00 [Bug bootstrap/27501] New: Shell compatibility problem aldot at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2006-05-14 10:49 ` aldot at gcc dot gnu dot org
@ 2006-05-14 19:56 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-14 19:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-05-14 19:56 -------
Fixed.


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2006-05-14 19:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-08 18:00 [Bug bootstrap/27501] New: Shell compatibility problem aldot at gcc dot gnu dot org
2006-05-08 18:03 ` [Bug bootstrap/27501] " aldot at gcc dot gnu dot org
2006-05-08 18:06 ` [Bug bootstrap/27501] [4.2 Regression] " pinskia at gcc dot gnu dot org
2006-05-09  8:02 ` aldot at gcc dot gnu dot org
2006-05-14 10:49 ` aldot at gcc dot gnu dot org
2006-05-14 19:56 ` pinskia at gcc dot gnu dot org

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).