public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: other/2126: configure script fails with --silent option
@ 2002-12-30  4:17 neroden
  0 siblings, 0 replies; 4+ messages in thread
From: neroden @ 2002-12-30  4:17 UTC (permalink / raw)
  To: bangerth, gcc-bugs, gcc-prs, nobody, pirie

Synopsis: configure script fails with --silent option

State-Changed-From-To: analyzed->closed
State-Changed-By: neroden
State-Changed-When: Mon Dec 30 04:17:28 2002
State-Changed-Why:
    Fixed in 3.4 (mainline) as a side effect of autoconfiscation of the top level.  (If someone submits a patch for 3.3 or 3.2.2 I'll try to make sure it gets reviewed.)

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=2126


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

* Re: other/2126: configure script fails with --silent option
@ 2003-01-03 19:56 Wolfgang Bangerth
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Bangerth @ 2003-01-03 19:56 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR other/2126; it has been noted by GNATS.

From: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
To: neroden@gcc.gnu.org, <bangerth@ticam.utexas.edu>, <gcc-bugs@gcc.gnu.org>,
   <pirie@u.washington.edu>, <gcc-gnats@gcc.gnu.org>
Cc:  
Subject: Re: other/2126: configure script fails with --silent option
Date: Fri, 3 Jan 2003 13:52:06 -0600 (CST)

 On 30 Dec 2002 neroden@gcc.gnu.org wrote:
 
 > Synopsis: configure script fails with --silent option
 > 
 > State-Changed-From-To: analyzed->closed
 > State-Changed-By: neroden
 > State-Changed-When: Mon Dec 30 04:17:28 2002
 > State-Changed-Why:
 >     Fixed in 3.4 (mainline) as a side effect of autoconfiscation of the
 > top level.  (If someone submits a patch for 3.3 or 3.2.2 I'll try to
 > make sure it gets reviewed.)
 
 I even sent a mail directly to you with a patch in it :-) (This date: Thu, 
 5 Dec 2002 14:16:37 -0600 (CST)).
 
 I append the mail & patch from the mail, but beware that it is not tested.
 
 Regards
   Wolfgang
 
 -------------------------------------------------------------------------
 Wolfgang Bangerth              email:           bangerth@ticam.utexas.edu
                                www: http://www.ticam.utexas.edu/~bangerth
 
 From bangerth@ticam.utexas.edu Thu Dec  5 14:16:37 2002 -0600
 Date: Thu, 5 Dec 2002 14:16:37 -0600 (CST)
 From: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
 To: neroden@gcc.gnu.org
 Subject: PR 2126
 Message-ID: 
 <Pine.LNX.4.44.0212051413060.18107-100000@gandalf.ticam.utexas.edu>
 MIME-Version: 1.0
 Content-Type: TEXT/PLAIN; charset=US-ASCII
 Status: O
 X-Status: 
 X-Keywords:                  
 X-UID: 98
 
 
 Nathanael,
 you are presently cleaning up the configury machinery anyway, so maybe you 
 can do this on your way as well: PR 2126 states this:
   Two command line options, --silent and --site=SITE are supported. 
 
   Code on line 193 attempts to identify options that require, but are 
   missing, values.  --site requires a value; --silent does not.  --si* 
   matches both, so --silent is rejected as not having a required value.  
   Changing the code on line 193 from '--si*' to '--sit*' will trap --site 
   with no value but allow --silent to pass.
 
   Current workaround is to either patch the configure script before 
   running it, or use the --quiet option.
 
 I checked that the problem still is in the sources. The report also gives 
 a patch, which is here in updated version:
 Index: configure
 ===================================================================
 RCS file: /cvsroot/gcc/gcc/configure,v
 retrieving revision 1.49
 diff -c -r1.49 configure
 *** configure	29 Sep 2002 16:11:24 -0000	1.49
 --- configure	5 Dec 2002 20:15:16 -0000
 ***************
 *** 197,203 ****
   		;;
   # These options have mandatory values.  Since we didn't find an = sign,
   # the value must be in the next argument
 ! 	--bu* | --cache* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --si* | --sr* | --ta* | --tm* | --x-* | --bi* | --sb* | --li* | --da* | --sy* | --sh* | --lo* | --in* | --ol* | --ma*)
   		optarg=$1
   		shift
   		arguments="$arguments $option=$optarg"
 --- 197,203 ----
   		;;
   # These options have mandatory values.  Since we didn't find an = sign,
   # the value must be in the next argument
 ! 	--bu* | --cache* | --ex* | --ho* | --pre* | --program-p* | --program-s* | --program-t* | --sit* | --sr* | --ta* | --tm* | --x-* | --bi* | --sb* | --li* | --da* | --sy* | --sh* | --lo* | --in* | --ol* | --ma*)
   		optarg=$1
   		shift
   		arguments="$arguments $option=$optarg"
 
 
 I checked that all other places have indeed --sit* instead of --si*.
 
 If you should apply such a patch, I can close the report for you if you 
 want.
 
 Thanks
   Wolfgang
 
 


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

* Re: other/2126: configure script fails with --silent option
@ 2002-12-21  9:30 bangerth
  0 siblings, 0 replies; 4+ messages in thread
From: bangerth @ 2002-12-21  9:30 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, nobody, pirie

Synopsis: configure script fails with --silent option

State-Changed-From-To: open->analyzed
State-Changed-By: bangerth
State-Changed-When: Sat Dec 21 09:30:56 2002
State-Changed-Why:
    Problem still exists.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=2126


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

* other/2126: configure script fails with --silent option
@ 2001-04-01  0:00 pirie
  0 siblings, 0 replies; 4+ messages in thread
From: pirie @ 2001-04-01  0:00 UTC (permalink / raw)
  To: gcc-gnats

>Number:         2126
>Category:       other
>Synopsis:       configure script fails with --silent option
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    unassigned
>State:          open
>Class:          wrong-code
>Submitter-Id:   net
>Arrival-Date:   Wed Feb 28 08:46:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Pirie Hart
>Release:        2.95.2
>Organization:
>Environment:

>Description:
Two command line options, --silent and --site=SITE are supported.  

Code on line 193 attempts to identify options that require, but are missing, values.  --site requires a value; --silent does not.  --si* matches both, so --silent is rejected as not having a required value.  Changing the code on line 193 from '--si*' to '--sit*' will trap --site with no value but allow --silent to pass.

Current workaround is to either patch the configure script before running it, or use the --quiet option.
>How-To-Repeat:
>From gcc_objdir, type
     ../gcc-2.95.2/configure --silent
>Fix:
In the gcc-2.95.2/configure script, line 193,
     " ... | --si* | ... "
should be changed to
     " ... | --sit* | ... ".  

>Release-Note:
>Audit-Trail:
>Unformatted:


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

end of thread, other threads:[~2003-01-03 19:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-30  4:17 other/2126: configure script fails with --silent option neroden
  -- strict thread matches above, loose matches on Subject: below --
2003-01-03 19:56 Wolfgang Bangerth
2002-12-21  9:30 bangerth
2001-04-01  0:00 pirie

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