This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [JAVA] /bin/sh portability issues in classpath/lib/Makefile.in
- From: Tom Tromey <tromey at redhat dot com>
- To: Roger Sayle <roger at eyesopen dot com>
- Cc: java-patches at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org, GNU Classpath Patches <classpath-patches at gnu dot org>
- Date: 18 Aug 2006 13:39:32 -0600
- Subject: Re: [JAVA] /bin/sh portability issues in classpath/lib/Makefile.in
- References: <Pine.LNX.4.44.0607062213040.25460-100000@www.eyesopen.com>
- Reply-to: tromey at redhat dot com
>>>>> "Roger" == Roger Sayle <roger@eyesopen.com> writes:
Roger> This is the second installment in a series of fixes to allow libjava
Roger> to be built using Solaris' /bin/sh. This time the use of the idiom
Roger> "if ! [ -e subdir ] ; then ..." makes the native shell unhappy, and is
Roger> replaced in the patch below with the more portable equivalent of
Roger> "if test ! -d subdir ; then ...".
I'm (finally) checking this in to Classpath.
Feel free to commit it to libjava; if you prefer, I can do it.
Tom