/hg/release/icedtea6-1.7: Fix quoting of ICEDTEA_NAME ICEDTEA_RE...

doko at icedtea.classpath.org doko at icedtea.classpath.org
Wed Jan 27 04:26:33 PST 2010


changeset 8ba01f7d3ec1 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=8ba01f7d3ec1
author: doko at ubuntu.com
date: Wed Jan 27 13:17:47 2010 +0100

	Fix quoting of ICEDTEA_NAME ICEDTEA_REV ICEDTEA_PKG

	If these macros need quoting, quoting has to be done in the places
	where it is needed, else PLUGIN_VERSION gets wrong.

	2010-01-27 Matthias Klose <doko at ubuntu.com>

	 * Makefile.am: Remove quoting from ICEDTEA_NAME ICEDTEA_REV
	ICEDTEA_PKG.


diffstat:

2 files changed, 10 insertions(+), 6 deletions(-)
ChangeLog   |    4 ++++
Makefile.am |   12 ++++++------

diffs (36 lines):

diff -r 9d2d33c4098d -r 8ba01f7d3ec1 ChangeLog
--- a/ChangeLog	Tue Jan 26 15:08:05 2010 -0500
+++ b/ChangeLog	Wed Jan 27 13:17:47 2010 +0100
@@ -1,3 +1,7 @@ 2010-01-26  Deepak Bhole <dbhole at redhat.
+2010-01-27  Matthias Klose  <doko at ubuntu.com>
+
+	* Makefile.am: Remove quoting from ICEDTEA_NAME ICEDTEA_REV ICEDTEA_PKG.
+
 2010-01-26  Deepak Bhole <dbhole at redhat.com>
 
 	* NEWS: Added message about alpha release for the new NPR based plugin.
diff -r 9d2d33c4098d -r 8ba01f7d3ec1 Makefile.am
--- a/Makefile.am	Tue Jan 26 15:08:05 2010 -0500
+++ b/Makefile.am	Wed Jan 27 13:17:47 2010 +0100
@@ -382,15 +382,15 @@ JDK_UPDATE_VERSION = $(shell echo $(OPEN
 JDK_UPDATE_VERSION = $(shell echo $(OPENJDK_VERSION) | sed -e "s/^b//")
 COMBINED_VERSION = $(JDK_UPDATE_VERSION)-$(OPENJDK_VERSION)
 
-ICEDTEA_NAME="IcedTea6"
+ICEDTEA_NAME = IcedTea6
 if HAS_ICEDTEA_REVISION
-ICEDTEA_REV="+${ICEDTEA_REVISION}"
+ICEDTEA_REV = +${ICEDTEA_REVISION}
 endif
 if HAS_PKGVERSION
-ICEDTEA_PKG=" (${PKGVERSION})"
-endif
-
-PLUGIN_VERSION=$(ICEDTEA_NAME) $(PACKAGE_VERSION)$(ICEDTEA_REV)$(ICEDTEA_PKG)
+ICEDTEA_PKG = $(EMPTY) (${PKGVERSION})
+endif
+
+PLUGIN_VERSION = $(ICEDTEA_NAME) $(PACKAGE_VERSION)$(ICEDTEA_REV)$(ICEDTEA_PKG)
 
 ICEDTEA_ENV = \
 	IMPORT_BINARY_PLUGS=true \



More information about the distro-pkg-dev mailing list