public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcj/38251]  New: [4.4 Regression] tools.zip doesn't build on systems with short command lines
@ 2008-11-24 17:53 ro at gcc dot gnu dot org
  2008-11-24 17:56 ` [Bug libgcj/38251] " aph at gcc dot gnu dot org
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: ro at gcc dot gnu dot org @ 2008-11-24 17:53 UTC (permalink / raw)
  To: java-prs

As of trunk revision 142086, libgcj doesn't build any longer on Tru64 UNIX
V5.1B:

(cd classes; \
        jar cf ../tools.zip `find . -name .svn -prune -o -type f -print`; \
        cd ..)
/usr/local/bin/bash: /vol/gnu/bin/jar: Arg list too long

I think such systems still need to be taken into account.

This was broken by this change:

2008-11-05  Andrew Haley  <aph@redhat.com>

        * tools/Makefile.am (UPDATE_TOOLS_ZIP, CREATE_TOOLS_ZIP): Exclude
        .svn directories.


-- 
           Summary: [4.4 Regression] tools.zip doesn't build on systems with
                    short command lines
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcj
        AssignedTo: aph at gcc dot gnu dot org
        ReportedBy: ro at gcc dot gnu dot org
 GCC build triplet: alpha-dec-osf5.1b
  GCC host triplet: alpha-dec-osf5.1b
GCC target triplet: alpha-dec-osf5.1b


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
@ 2008-11-24 17:56 ` aph at gcc dot gnu dot org
  2008-11-24 18:04 ` ro at techfak dot uni-bielefeld dot de
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: aph at gcc dot gnu dot org @ 2008-11-24 17:56 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from aph at gcc dot gnu dot org  2008-11-24 17:56 -------
Please try

jar cf ../tools.zip `find . -name .svn -prune -o -type d -print`


-- 


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
  2008-11-24 17:56 ` [Bug libgcj/38251] " aph at gcc dot gnu dot org
@ 2008-11-24 18:04 ` ro at techfak dot uni-bielefeld dot de
  2008-11-24 18:29 ` aph at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2008-11-24 18:04 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from ro at techfak dot uni-bielefeld dot de  2008-11-24 18:04 -------
Subject: Re:  [4.4 Regression] tools.zip doesn't build on systems with short
command lines

aph at gcc dot gnu dot org writes:

> Please try
> 
> jar cf ../tools.zip `find . -name .svn -prune -o -type d -print`

while this works, many files are added several times, e.g.

% jar tf ../tools.zip |grep classes/com/sun/javadoc/ProgramElementDoc.class
classes/com/sun/javadoc/ProgramElementDoc.class
classes/com/sun/javadoc/ProgramElementDoc.class
classes/com/sun/javadoc/ProgramElementDoc.class
classes/com/sun/javadoc/ProgramElementDoc.class
classes/com/sun/javadoc/ProgramElementDoc.class

If one wanted to go this path, one would need to prune all but the deepest
directories.

        Rainer


-- 


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
  2008-11-24 17:56 ` [Bug libgcj/38251] " aph at gcc dot gnu dot org
  2008-11-24 18:04 ` ro at techfak dot uni-bielefeld dot de
@ 2008-11-24 18:29 ` aph at gcc dot gnu dot org
  2008-11-24 18:37 ` ro at techfak dot uni-bielefeld dot de
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: aph at gcc dot gnu dot org @ 2008-11-24 18:29 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from aph at gcc dot gnu dot org  2008-11-24 18:29 -------
Yes, of course.

jar has an update mode that adds files, so I can use that.  How long may an
arglist be?


-- 


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-11-24 18:29 ` aph at gcc dot gnu dot org
@ 2008-11-24 18:37 ` ro at techfak dot uni-bielefeld dot de
  2008-11-24 18:48 ` aph at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2008-11-24 18:37 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from ro at techfak dot uni-bielefeld dot de  2008-11-24 18:37 -------
Subject: Re:  [4.4 Regression] tools.zip doesn't build on systems with short
command lines

aph at gcc dot gnu dot org writes:

> jar has an update mode that adds files, so I can use that.  How long may an
> arglist be?

% getconf ARG_MAX
38912

I'm astonished that it is so low; I thought only IRIX 6 had a limit this
close to the old 20k default.

Unfortunately, the version of jar I use reports

% jar u
/vol/gnu/bin/jar: `-u' mode unimplemented.
% jar --version
jar (fastjar) 0.92-gcc

Copyright 1999, 2000, 2001  Bryan Burns
Copyright 2002 Free Software Foundation
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Perhaps I should simply move it out of the way and use zip instead.

        Rainer


-- 


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2008-11-24 18:37 ` ro at techfak dot uni-bielefeld dot de
@ 2008-11-24 18:48 ` aph at gcc dot gnu dot org
  2008-11-24 18:52 ` aph at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: aph at gcc dot gnu dot org @ 2008-11-24 18:48 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from aph at gcc dot gnu dot org  2008-11-24 18:48 -------
Sure, if you can use zip instead, do that.


-- 


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-11-24 18:48 ` aph at gcc dot gnu dot org
@ 2008-11-24 18:52 ` aph at gcc dot gnu dot org
  2008-11-25 16:33 ` rguenth at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: aph at gcc dot gnu dot org @ 2008-11-24 18:52 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from aph at gcc dot gnu dot org  2008-11-24 18:52 -------
I suggest

jar cf ... to create it, and
zip u ... to add to it

that way you'll get the correct META-INF directory.


-- 


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


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

* [Bug libgcj/38251] [4.4 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-11-24 18:52 ` aph at gcc dot gnu dot org
@ 2008-11-25 16:33 ` rguenth at gcc dot gnu dot org
  2009-04-21 15:54 ` [Bug libgcj/38251] [4.4/4.5 " jakub at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-11-25 16:33 UTC (permalink / raw)
  To: java-prs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
   Target Milestone|---                         |4.4.0


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2008-11-25 16:33 ` rguenth at gcc dot gnu dot org
@ 2009-04-21 15:54 ` jakub at gcc dot gnu dot org
  2009-07-22 10:33 ` jakub at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-04-21 15:54 UTC (permalink / raw)
  To: java-prs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.0                       |4.4.1


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2009-04-21 15:54 ` [Bug libgcj/38251] [4.4/4.5 " jakub at gcc dot gnu dot org
@ 2009-07-22 10:33 ` jakub at gcc dot gnu dot org
  2009-07-28 17:53 ` htl10 at users dot sourceforge dot net
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-07-22 10:33 UTC (permalink / raw)
  To: java-prs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.1                       |4.4.2


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2009-07-22 10:33 ` jakub at gcc dot gnu dot org
@ 2009-07-28 17:53 ` htl10 at users dot sourceforge dot net
  2009-07-28 18:06 ` htl10 at users dot sourceforge dot net
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: htl10 at users dot sourceforge dot net @ 2009-07-28 17:53 UTC (permalink / raw)
  To: java-prs



------- Comment #7 from htl10 at users dot sourceforge dot net  2009-07-28 17:53 -------
I probably have a similiar bug about length of commend line with 4.4.1 which I
shall file now.


-- 

htl10 at users dot sourceforge dot net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |htl10 at users dot
                   |                            |sourceforge dot net


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2009-07-28 17:53 ` htl10 at users dot sourceforge dot net
@ 2009-07-28 18:06 ` htl10 at users dot sourceforge dot net
  2009-07-28 20:30 ` htl10 at users dot sourceforge dot net
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: htl10 at users dot sourceforge dot net @ 2009-07-28 18:06 UTC (permalink / raw)
  To: java-prs



------- Comment #8 from htl10 at users dot sourceforge dot net  2009-07-28 18:06 -------
I have a slightly different message on alphaev68-dec-osf5.1a with gcc 4.4.1,
but possibly the same problem: (I can bootstrap 4.3.3, but no luck with
4.4.0/4.4.1):

------------------------
find ../../../../../gcc-4.4.1/libjava/classpath/tools/external/asm -name
'*.java' -print > asm.lst
find ../../../../../gcc-4.4.1/libjava/classpath/tools/gnu/classpath/tools \
             ../../../../../gcc-4.4.1/libjava/classpath/tools/com/sun/javadoc \
            
../../../../../gcc-4.4.1/libjava/classpath/tools/com/sun/tools/doclets \
            
../../../../../gcc-4.4.1/libjava/classpath/tools/com/sun/tools/javadoc \
            
../../../../../gcc-4.4.1/libjava/classpath/tools/com/sun/tools/javac \
            
../../../../../gcc-4.4.1/libjava/classpath/tools/com/sun/tools/javah \
             ../../../../../gcc-4.4.1/libjava/classpath/tools/sun/rmi/rmic \
             -path '*gnu/classpath/tools/gjdoc' -prune -o -path
'*gnu/classpath/tools/doclets' -prune -o -path '*gnu/classpath/tools/taglets'
-prune -o -path '*com/sun/javadoc' -prune -o -path '*com/sun/tools/doclets'
-prune -o -path '*com/sun/tools/javadoc' -prune -o \
             -name '*.java' -print > classes.lst
find: bad option -path
make[4]: *** [tools.zip] Error 1
make[4]: Leaving directory
`/home/htl10/tmp-build/g41-dir/alphaev68-dec-osf5.1a/libjava/classpath/tools'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
`/home/htl10/tmp-build/g41-dir/alphaev68-dec-osf5.1a/libjava/classpath'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/home/htl10/tmp-build/g41-dir/alphaev68-dec-osf5.1a/libjava'
make[1]: *** [all-target-libjava] Error 2
make[1]: Leaving directory `/home/htl10/tmp-build/g41-dir'
make: *** [all] Error 2
bash-2.05a# 
--------------------------------------
The 'find: bad option -path' message probably means the command was truncated,
I believe. It looks pretty long to me :-).


-- 


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2009-07-28 18:06 ` htl10 at users dot sourceforge dot net
@ 2009-07-28 20:30 ` htl10 at users dot sourceforge dot net
  2009-07-28 20:42 ` htl10 at users dot sourceforge dot net
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: htl10 at users dot sourceforge dot net @ 2009-07-28 20:30 UTC (permalink / raw)
  To: java-prs



------- Comment #9 from htl10 at users dot sourceforge dot net  2009-07-28 20:30 -------
Sorry for the noise - the 'find: bad option -path' error message of mine is
genuine - gcc 4.4 (classpath) requires GNU findutils syntax which doesn't work
with DEC/Tru64 find. Am filing a separate bug now. 


-- 


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2009-07-28 20:30 ` htl10 at users dot sourceforge dot net
@ 2009-07-28 20:42 ` htl10 at users dot sourceforge dot net
  2009-07-29  8:20 ` ro at techfak dot uni-bielefeld dot de
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: htl10 at users dot sourceforge dot net @ 2009-07-28 20:42 UTC (permalink / raw)
  To: java-prs



------- Comment #10 from htl10 at users dot sourceforge dot net  2009-07-28 20:42 -------
The 'find bad option' problem was already reported for solaris as bug 38715 .
just FYI. 


-- 


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2009-07-28 20:42 ` htl10 at users dot sourceforge dot net
@ 2009-07-29  8:20 ` ro at techfak dot uni-bielefeld dot de
  2009-10-15 12:53 ` jakub at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2009-07-29  8:20 UTC (permalink / raw)
  To: java-prs



------- Comment #11 from ro at techfak dot uni-bielefeld dot de  2009-07-29 08:20 -------
Subject: Re:  [4.4/4.5 Regression] tools.zip doesn't build on systems with
short command lines

htl10 at users dot sourceforge dot net writes:

> I have a slightly different message on alphaev68-dec-osf5.1a with gcc 4.4.1,
> but possibly the same problem: (I can bootstrap 4.3.3, but no luck with
> 4.4.0/4.4.1):
[...]
> find: bad option -path
[...]
> The 'find: bad option -path' message probably means the command was truncated,
> I believe. It looks pretty long to me :-).

No, that's a different problem: -path is a GNU find extension which Tru64
UNIX find doesn't support (nor do e.g. Solaris 10 and IRIX 6.5 find).  It's
simply unportable code.

        Rainer


-- 


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2009-07-29  8:20 ` ro at techfak dot uni-bielefeld dot de
@ 2009-10-15 12:53 ` jakub at gcc dot gnu dot org
  2010-01-21 13:15 ` jakub at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-10-15 12:53 UTC (permalink / raw)
  To: java-prs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.2                       |4.4.3


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2009-10-15 12:53 ` jakub at gcc dot gnu dot org
@ 2010-01-21 13:15 ` jakub at gcc dot gnu dot org
  2010-03-01 12:32 ` ro at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: jakub at gcc dot gnu dot org @ 2010-01-21 13:15 UTC (permalink / raw)
  To: java-prs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.3                       |4.4.4


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2010-01-21 13:15 ` jakub at gcc dot gnu dot org
@ 2010-03-01 12:32 ` ro at gcc dot gnu dot org
  2010-03-01 18:15 ` ro at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: ro at gcc dot gnu dot org @ 2010-03-01 12:32 UTC (permalink / raw)
  To: java-prs



------- Comment #12 from ro at gcc dot gnu dot org  2010-03-01 12:32 -------
Subject: Bug 38251

Author: ro
Date: Mon Mar  1 12:32:02 2010
New Revision: 157137

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=157137
Log:
        PR libgcj/38251
        * tools/Makefile.am (dist-hook): Prune .svn directories in asm and
        classes copies.
        * tools/Makefile.in: Regenerate.

        Revert:
        2008-11-05  Andrew Haley  <aph@redhat.com>

        * tools/Makefile.am (UPDATE_TOOLS_ZIP, CREATE_TOOLS_ZIP): Exclude
        .svn direcories.

Modified:
    trunk/libjava/classpath/ChangeLog
    trunk/libjava/classpath/tools/Makefile.am
    trunk/libjava/classpath/tools/Makefile.in


-- 


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (17 preceding siblings ...)
  2010-03-01 18:15 ` ro at gcc dot gnu dot org
@ 2010-03-01 18:15 ` ro at gcc dot gnu dot org
  2010-06-02 16:57 ` ro at gcc dot gnu dot org
  19 siblings, 0 replies; 21+ messages in thread
From: ro at gcc dot gnu dot org @ 2010-03-01 18:15 UTC (permalink / raw)
  To: java-prs



------- Comment #13 from ro at gcc dot gnu dot org  2010-03-01 18:15 -------
Fixed for 4.5.0:

http://gcc.gnu.org/ml/java-patches/2010-q1/msg00021.html


-- 

ro at gcc dot gnu dot org changed:

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


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (16 preceding siblings ...)
  2010-03-01 12:32 ` ro at gcc dot gnu dot org
@ 2010-03-01 18:15 ` ro at gcc dot gnu dot org
  2010-03-01 18:15 ` ro at gcc dot gnu dot org
  2010-06-02 16:57 ` ro at gcc dot gnu dot org
  19 siblings, 0 replies; 21+ messages in thread
From: ro at gcc dot gnu dot org @ 2010-03-01 18:15 UTC (permalink / raw)
  To: java-prs



-- 

ro at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|aph at gcc dot gnu dot org  |ro at gcc dot gnu dot org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2010-03-01 18:15:00
               date|                            |


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


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

* [Bug libgcj/38251] [4.4/4.5 Regression] tools.zip doesn't build on systems with short command lines
  2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
                   ` (18 preceding siblings ...)
  2010-03-01 18:15 ` ro at gcc dot gnu dot org
@ 2010-06-02 16:57 ` ro at gcc dot gnu dot org
  19 siblings, 0 replies; 21+ messages in thread
From: ro at gcc dot gnu dot org @ 2010-06-02 16:57 UTC (permalink / raw)
  To: java-prs



------- Comment #14 from ro at gcc dot gnu dot org  2010-06-02 16:57 -------
Subject: Bug 38251

Author: ro
Date: Wed Jun  2 16:57:10 2010
New Revision: 160168

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=160168
Log:
        Backport from mainline:
        2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

        PR libgcj/38251
        * tools/Makefile.am (dist-hook): Prune .svn directories in asm and
        classes copies.
        * tools/Makefile.in: Regenerate.

        Revert:
        2008-11-05  Andrew Haley  <aph@redhat.com>

        * tools/Makefile.am (UPDATE_TOOLS_ZIP, CREATE_TOOLS_ZIP): Exclude
        .svn direcories.

Modified:
    branches/gcc-4_4-branch/libjava/classpath/ChangeLog
    branches/gcc-4_4-branch/libjava/classpath/tools/Makefile.am
    branches/gcc-4_4-branch/libjava/classpath/tools/Makefile.in


-- 


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


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

end of thread, other threads:[~2010-06-02 16:57 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-24 17:53 [Bug libgcj/38251] New: [4.4 Regression] tools.zip doesn't build on systems with short command lines ro at gcc dot gnu dot org
2008-11-24 17:56 ` [Bug libgcj/38251] " aph at gcc dot gnu dot org
2008-11-24 18:04 ` ro at techfak dot uni-bielefeld dot de
2008-11-24 18:29 ` aph at gcc dot gnu dot org
2008-11-24 18:37 ` ro at techfak dot uni-bielefeld dot de
2008-11-24 18:48 ` aph at gcc dot gnu dot org
2008-11-24 18:52 ` aph at gcc dot gnu dot org
2008-11-25 16:33 ` rguenth at gcc dot gnu dot org
2009-04-21 15:54 ` [Bug libgcj/38251] [4.4/4.5 " jakub at gcc dot gnu dot org
2009-07-22 10:33 ` jakub at gcc dot gnu dot org
2009-07-28 17:53 ` htl10 at users dot sourceforge dot net
2009-07-28 18:06 ` htl10 at users dot sourceforge dot net
2009-07-28 20:30 ` htl10 at users dot sourceforge dot net
2009-07-28 20:42 ` htl10 at users dot sourceforge dot net
2009-07-29  8:20 ` ro at techfak dot uni-bielefeld dot de
2009-10-15 12:53 ` jakub at gcc dot gnu dot org
2010-01-21 13:15 ` jakub at gcc dot gnu dot org
2010-03-01 12:32 ` ro at gcc dot gnu dot org
2010-03-01 18:15 ` ro at gcc dot gnu dot org
2010-03-01 18:15 ` ro at gcc dot gnu dot org
2010-06-02 16:57 ` ro 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).