/hg/icedtea7: Fix syntax in new download rules.
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Thu Apr 12 10:36:31 PDT 2012
changeset b43c8ac7586b in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=b43c8ac7586b
author: Andrew John Hughes <ahughes at redhat.com>
date: Thu Apr 12 18:36:20 2012 +0100
Fix syntax in new download rules.
2012-04-12 Andrew John Hughes <ahughes at redhat.com>
* Makefile.am:
(download-openjdk): Fix syntax.
(download-cacao): Likewise.
(download-jamvm): Likewise.
diffstat:
ChangeLog | 7 +++++++
Makefile.am | 18 +++++++++---------
2 files changed, 16 insertions(+), 9 deletions(-)
diffs (98 lines):
diff -r 887110bdf826 -r b43c8ac7586b ChangeLog
--- a/ChangeLog Wed Apr 11 21:19:33 2012 +0100
+++ b/ChangeLog Thu Apr 12 18:36:20 2012 +0100
@@ -1,3 +1,10 @@
+2012-04-12 Andrew John Hughes <ahughes at redhat.com>
+
+ * Makefile.am:
+ (download-openjdk): Fix syntax.
+ (download-cacao): Likewise.
+ (download-jamvm): Likewise.
+
2012-04-11 Andrew John Hughes <ahughes at redhat.com>
* Makefile.am:
diff -r 887110bdf826 -r b43c8ac7586b Makefile.am
--- a/Makefile.am Wed Apr 11 21:19:33 2012 +0100
+++ b/Makefile.am Thu Apr 12 18:36:20 2012 +0100
@@ -855,7 +855,7 @@
if ! echo "$(OPENJDK_SHA256SUM) $(OPENJDK_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ -e $(OPENJDK_SRC_ZIP) ] ; then \
mv $(OPENJDK_SRC_ZIP) $(OPENJDK_SRC_ZIP).old ; \
fi ; \
@@ -874,7 +874,7 @@
if ! echo "$(CORBA_SHA256SUM) $(CORBA_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ $(CORBA_SRC_ZIP) ] ; then \
mv $(CORBA_SRC_ZIP) $(CORBA_SRC_ZIP).old ; \
fi ; \
@@ -893,7 +893,7 @@
if ! echo "$(JAXP_SHA256SUM) $(JAXP_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ $(JAXP_SRC_ZIP) ] ; then \
mv $(JAXP_SRC_ZIP) $(JAXP_SRC_ZIP).old ; \
fi ; \
@@ -912,7 +912,7 @@
if ! echo "$(JAXWS_SHA256SUM) $(JAXWS_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ $(JAXWS_SRC_ZIP) ] ; then \
mv $(JAXWS_SRC_ZIP) $(JAXWS_SRC_ZIP).old ; \
fi ; \
@@ -931,7 +931,7 @@
if ! echo "$(JDK_SHA256SUM) $(JDK_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ $(JDK_SRC_ZIP) ] ; then \
mv $(JDK_SRC_ZIP) $(JDK_SRC_ZIP).old ; \
fi ; \
@@ -950,7 +950,7 @@
if ! echo "$(LANGTOOLS_SHA256SUM) $(LANGTOOLS_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ $(LANGTOOLS_SRC_ZIP) ] ; then \
mv $(LANGTOOLS_SRC_ZIP) $(LANGTOOLS_SRC_ZIP).old ; \
fi ; \
@@ -969,7 +969,7 @@
if ! echo "$(HS_SHA256SUM) $(HOTSPOT_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ -e $(HOTSPOT_SRC_ZIP) ] ; then \
mv $(HOTSPOT_SRC_ZIP) $(HOTSPOT_SRC_ZIP).old ; \
fi ; \
@@ -1026,7 +1026,7 @@
if ! echo "$(CACAO_SHA256SUM) $(CACAO_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ -e $(CACAO_SRC_ZIP) ] ; then \
mv $(CACAO_SRC_ZIP) $(CACAO_SRC_ZIP).old ; \
fi ; \
@@ -1056,7 +1056,7 @@
if ! echo "$(JAMVM_SHA256SUM) $(JAMVM_SRC_ZIP)" \
| $(SHA256SUM) --check ; \
then \
- if test "x$${enable_downloading}" = "xyes"; then \
+ if test "x$(enable_downloading)" = "xyes"; then \
if [ -e $(JAMVM_SRC_ZIP) ] ; then \
mv $(JAMVM_SRC_ZIP) $(JAMVM_SRC_ZIP).old ; \
fi ; \
More information about the distro-pkg-dev
mailing list