changeset in /hg/icedtea6: 2008-07-23 Matthias Klose <doko at ubu...
doko at ubuntu.com
doko at ubuntu.com
Wed Jul 23 01:20:47 PDT 2008
changeset d6c21fc37154 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=d6c21fc37154
description:
2008-07-23 Matthias Klose <doko at ubuntu.com>
* Makefile.am (stamps/extract.stamp): Don't call tar with -z.
diffstat:
2 files changed, 6 insertions(+), 2 deletions(-)
ChangeLog | 4 ++++
Makefile.am | 4 ++--
diffs (32 lines):
diff -r 35e24a6f636f -r d6c21fc37154 ChangeLog
--- a/ChangeLog Wed Jul 23 03:46:38 2008 -0400
+++ b/ChangeLog Wed Jul 23 10:19:31 2008 +0200
@@ -1,3 +1,7 @@ 2008-07-23 Gary Benson <gbenson at redhat
+2008-07-23 Matthias Klose <doko at ubuntu.com>
+
+ * Makefile.am (stamps/extract.stamp): Don't call tar with -z.
+
2008-07-23 Gary Benson <gbenson at redhat.com>
PR icedtea/167:
diff -r 35e24a6f636f -r d6c21fc37154 Makefile.am
--- a/Makefile.am Wed Jul 23 03:46:38 2008 -0400
+++ b/Makefile.am Wed Jul 23 10:19:31 2008 +0200
@@ -436,7 +436,7 @@ stamps/extract.stamp: stamps/download.st
if ! test -d openjdk ; \
then \
mkdir openjdk ; \
- $(TAR) xzf $(OPENJDK_SRC_ZIP) -C openjdk; \
+ $(TAR) xf $(OPENJDK_SRC_ZIP) -C openjdk; \
chmod -R ug+w openjdk ; \
sh $(srcdir)/fsg.sh ; \
fi
@@ -445,7 +445,7 @@ if !USE_SYSTEM_CACAO
if ! test -d cacao ; \
then \
mkdir cacao ; \
- $(TAR) xzf $(CACAO_SRC_ZIP) -C cacao ; \
+ $(TAR) xf $(CACAO_SRC_ZIP) -C cacao ; \
fi
endif
endif
More information about the distro-pkg-dev
mailing list