changeset in /hg/icedtea: 2007-12-11 Lillian Angel <langel at red...
Lillian Angel
langel at redhat.com
Wed Jan 16 07:09:38 PST 2008
changeset fc1a78aae3bd in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=fc1a78aae3bd
description:
2007-12-11 Lillian Angel <langel at redhat.com>
* Makefile.am
(stamps/clone-ecj.stamp): Fixed to copy over openjdk dir instead of
cloning again, or unzip sources specified.
(stamps/patch-ecj.stamp): Only apply ecj patch, assuming all other
patches have already been applied to the openjdk sources.
* Makefile.in: Regenerate.
diffstat:
3 files changed, 19 insertions(+), 26 deletions(-)
ChangeLog | 9 +++++++++
Makefile.am | 18 +++++-------------
Makefile.in | 18 +++++-------------
diffs (100 lines):
diff -r 3b4865cd5727 -r fc1a78aae3bd ChangeLog
--- a/ChangeLog Tue Dec 11 11:55:17 2007 -0500
+++ b/ChangeLog Tue Dec 11 13:35:48 2007 -0500
@@ -1,3 +1,12 @@ 2007-12-11 Lillian Angel <langel at redha
+2007-12-11 Lillian Angel <langel at redhat.com>
+
+ * Makefile.am
+ (stamps/clone-ecj.stamp): Fixed to copy over openjdk dir instead of
+ cloning again, or unzip sources specified.
+ (stamps/patch-ecj.stamp): Only apply ecj patch, assuming all other
+ patches have already been applied to the openjdk sources.
+ * Makefile.in: Regenerate.
+
2007-12-11 Lillian Angel <langel at redhat.com>
* Makefile.am
diff -r 3b4865cd5727 -r fc1a78aae3bd Makefile.am
--- a/Makefile.am Tue Dec 11 11:55:17 2007 -0500
+++ b/Makefile.am Tue Dec 11 13:35:48 2007 -0500
@@ -251,17 +251,18 @@ clean-patch:
# ======================================
# Extract OpenJDK sources for ecj.
-stamps/clone-ecj.stamp: stamps/clone.stamp
+stamps/clone-ecj.stamp: stamps/patch.stamp
if ! test -d openjdk-ecj ; then \
+ mkdir -p tmp-ecj ; \
if [ ! -z $(OPENJDK_SRC_ZIP) ] ; \
then \
$(UNZIP) -q $(OPENJDK_SRC_ZIP) -d tmp-ecj; \
- mv tmp-ecj/openjdk openjdk-ecj ; \
- rmdir tmp-ecj; \
else \
- hg fclone -r jdk7-$(OPENJDK_VERSION) $(OPENJDK_URL) openjdk-ecj; \
+ cp -a openjdk tmp-ecj; \
fi ; \
fi
+ mv tmp-ecj/openjdk openjdk-ecj
+ rmdir tmp-ecj
chmod -R ug+w openjdk-ecj
mkdir -p stamps
touch stamps/clone-ecj.stamp
@@ -286,15 +287,6 @@ ICEDTEA_ECJ_PATCH = patches/icedtea-ecj.
ICEDTEA_ECJ_PATCH = patches/icedtea-ecj.patch
stamps/patch-ecj.stamp: stamps/clone-ecj.stamp
- for p in $(ICEDTEA_PATCHES) ; \
- do \
- echo Checking $$p ; \
- if $(PATCH) -l -p1 -d openjdk-ecj --dry-run -s -t -f -F 0 < $$p ; \
- then \
- echo Applying $$p ; \
- $(PATCH) -l -p1 -d openjdk-ecj < $$p ; \
- fi ; \
- done
echo Checking $(ICEDTEA_ECJ_PATCH) ; \
if $(PATCH) -p0 -l --dry-run -s -t -f < $(ICEDTEA_ECJ_PATCH) ; \
then \
diff -r 3b4865cd5727 -r fc1a78aae3bd Makefile.in
--- a/Makefile.in Tue Dec 11 11:55:17 2007 -0500
+++ b/Makefile.in Tue Dec 11 13:35:48 2007 -0500
@@ -677,17 +677,18 @@ clean-patch:
# ======================================
# Extract OpenJDK sources for ecj.
-stamps/clone-ecj.stamp: stamps/clone.stamp
+stamps/clone-ecj.stamp: stamps/patch.stamp
if ! test -d openjdk-ecj ; then \
+ mkdir -p tmp-ecj ; \
if [ ! -z $(OPENJDK_SRC_ZIP) ] ; \
then \
$(UNZIP) -q $(OPENJDK_SRC_ZIP) -d tmp-ecj; \
- mv tmp-ecj/openjdk openjdk-ecj ; \
- rmdir tmp-ecj; \
else \
- hg fclone -r jdk7-$(OPENJDK_VERSION) $(OPENJDK_URL) openjdk-ecj; \
+ cp -a openjdk tmp-ecj; \
fi ; \
fi
+ mv tmp-ecj/openjdk openjdk-ecj
+ rmdir tmp-ecj
chmod -R ug+w openjdk-ecj
mkdir -p stamps
touch stamps/clone-ecj.stamp
@@ -709,15 +710,6 @@ stamps/ports-ecj.stamp: stamps/clone-ecj
touch stamps/ports-ecj.stamp
stamps/patch-ecj.stamp: stamps/clone-ecj.stamp
- for p in $(ICEDTEA_PATCHES) ; \
- do \
- echo Checking $$p ; \
- if $(PATCH) -l -p1 -d openjdk-ecj --dry-run -s -t -f -F 0 < $$p ; \
- then \
- echo Applying $$p ; \
- $(PATCH) -l -p1 -d openjdk-ecj < $$p ; \
- fi ; \
- done
echo Checking $(ICEDTEA_ECJ_PATCH) ; \
if $(PATCH) -p0 -l --dry-run -s -t -f < $(ICEDTEA_ECJ_PATCH) ; \
then \
More information about the distro-pkg-dev
mailing list