public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: bootstrap/4266: gcc 3.0.1: Makefile.in seems to contain wrong path
@ 2001-09-08  2:16 Michael Carmack
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Carmack @ 2001-09-08  2:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

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

From: Michael Carmack <karmak@karmak.org>
To: gcc-gnats@gcc.gnu.org, nobody@gcc.gnu.org
Cc:  
Subject: Re: bootstrap/4266: gcc 3.0.1: Makefile.in seems to contain wrong path
Date: Sat, 8 Sep 2001 09:12:59 +0000

 On Sat, Sep 08, 2001 at 07:56:00AM -0000, gcc-gnats@gcc.gnu.org wrote:
 > Thank you very much for your problem report.
 > It has the internal identification `bootstrap/4266'.
 > The individual assigned to look at your
 > report is: unassigned. 
 > 
 > >Category:       bootstrap
 > >Responsible:    unassigned
 > >Synopsis:       gcc 3.0.1: Makefile.in seems to contain wrong path
 > >Arrival-Date:   Sat Sep 08 00:56:00 PDT 2001
 
 My apologies, but I sent the previous diff too quickly. There should
 have been an extra ../ in the path, rather than have it be removed.
 This one is correct:
 
 -------------------------------------------------------
 
 --- Makefile.in Sat Sep  8 08:18:44 2001
 +++ Makefile.in.original        Sat Sep  8 07:36:54 2001
 @@ -377,18 +377,18 @@
  ${thread_builddir}/gthr.h:
         sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \
             -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
 -           < ${glibcpp_srcdir}/../../gcc/gthr.h > $@
 +           < ${glibcpp_srcdir}/../gcc/gthr.h > $@
  
  ${thread_builddir}/gthr-single.h:
         sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
             -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
 -           < ${glibcpp_srcdir}/../../gcc/gthr-single.h > $@
 +           < ${glibcpp_srcdir}/../gcc/gthr-single.h > $@
  
  ${thread_builddir}/gthr-default.h:
         sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
             -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
             -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \
 -           < ${glibcpp_srcdir}/../../gcc/${glibcpp_thread_h} > $@
 +           < ${glibcpp_srcdir}/../gcc/${glibcpp_thread_h} > $@
  
  install-data-local:
         for file in `find . ! -name stamp-\* -print`; do \


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

* Re: bootstrap/4266: gcc 3.0.1: Makefile.in seems to contain wrong path
@ 2001-09-09 18:49 aoliva
  0 siblings, 0 replies; 3+ messages in thread
From: aoliva @ 2001-09-09 18:49 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, karmak, nobody

Synopsis: gcc 3.0.1: Makefile.in seems to contain wrong path

State-Changed-From-To: open->closed
State-Changed-By: aoliva
State-Changed-When: Sun Sep  9 18:49:07 2001
State-Changed-Why:
    This is already fixed for 3.0.2.  The fix was not as simple as your patch, unfortunately.  You wouldn't have run into a problem if you had used a separate build directory, though.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=4266&database=gcc


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

* bootstrap/4266: gcc 3.0.1: Makefile.in seems to contain wrong path
@ 2001-09-08  0:56 karmak
  0 siblings, 0 replies; 3+ messages in thread
From: karmak @ 2001-09-08  0:56 UTC (permalink / raw)
  To: gcc-gnats

>Number:         4266
>Category:       bootstrap
>Synopsis:       gcc 3.0.1: Makefile.in seems to contain wrong path
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Sat Sep 08 00:56:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     karmak@karmak.org
>Release:        gcc version 2.95.3 20010315 (release)
>Organization:
>Environment:
glibc 2.1.3
compiling gcc 3.0.1 with 2.95.3
Linux kernel 2.4.9
>Description:
libstdc++-v3/include/Makefile.in looks for gthr*.h files in the wrong place during a bootstrap compile. An apparent fix is shown below.
>How-To-Repeat:

>Fix:
--- Makefile.in.original        Sat Sep  8 07:36:54 2001
+++ Makefile.in Sat Sep  8 07:37:29 2001
@@ -377,18 +377,18 @@
 ${thread_builddir}/gthr.h:
        sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \
            -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
-           < ${glibcpp_srcdir}/../gcc/gthr.h > $@
+           < ${glibcpp_srcdir}/gcc/gthr.h > $@
 
 ${thread_builddir}/gthr-single.h:
        sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
            -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
-           < ${glibcpp_srcdir}/../gcc/gthr-single.h > $@
+           < ${glibcpp_srcdir}/gcc/gthr-single.h > $@
 
 ${thread_builddir}/gthr-default.h:
        sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
            -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
            -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \
-           < ${glibcpp_srcdir}/../gcc/${glibcpp_thread_h} > $@
+           < ${glibcpp_srcdir}/gcc/${glibcpp_thread_h} > $@

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


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

end of thread, other threads:[~2001-09-09 18:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-08  2:16 bootstrap/4266: gcc 3.0.1: Makefile.in seems to contain wrong path Michael Carmack
  -- strict thread matches above, loose matches on Subject: below --
2001-09-09 18:49 aoliva
2001-09-08  0:56 karmak

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