configure.ac: Redirect $JAR -cf@ output to /dev/null.

* configure.ac: Redirect $JAR -cf@ output to /dev/null.
	* configure: Regenerate.

From-SVN: r171941
This commit is contained in:
Rainer Orth 2011-04-04 16:01:54 +00:00 committed by Rainer Orth
parent 7656526e37
commit d355ede7fd
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2011-04-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure.ac: Redirect $JAR -cf@ output to /dev/null.
* configure: Regenerate.
2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure.ac (THREADS): Remove solaris.

2
libjava/configure vendored
View file

@ -5850,7 +5850,7 @@ fi
# We need a jar that supports -@. This is a GNU extension.
if test "$JAR" != no; then
rm -f config-test.jar
echo $srcdir/configure.ac | $JAR -cf@ config-test.jar
echo $srcdir/configure.ac | $JAR -cf@ config-test.jar >/dev/null 2>&1
if test -f config-test.jar; then
rm -f config-test.jar
else

View file

@ -166,7 +166,7 @@ AC_PATH_PROG([UNZIP], [unzip], unzip)
# We need a jar that supports -@. This is a GNU extension.
if test "$JAR" != no; then
rm -f config-test.jar
echo $srcdir/configure.ac | $JAR -cf@ config-test.jar
echo $srcdir/configure.ac | $JAR -cf@ config-test.jar >/dev/null 2>&1
if test -f config-test.jar; then
rm -f config-test.jar
else