changeset 1845:73f992e2b417

Fix trailing space after plugin version when pkgversion not set. 2010-01-25 Andrew John Hughes <ahughes@redhat.com> * Makefile.am: Remove trailing space after IcedTea version in plugin version information when package version is not set.
author Andrew John Hughes <ahughes@redhat.com>
date Mon, 25 Jan 2010 21:52:19 +0000
parents b0df194e92bb
children ae4a9516faec
files ChangeLog Makefile.am
diffstat 2 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jan 25 21:49:03 2010 +0000
+++ b/ChangeLog	Mon Jan 25 21:52:19 2010 +0000
@@ -1,3 +1,10 @@
+2010-01-25 Andrew John Hughes  <ahughes@redhat.com>
+
+	* Makefile.am:
+	Remove trailing space after IcedTea version
+	in plugin version information when package
+	version is not set.
+	
 2010-01-25 Andrew John Hughes  <ahughes@redhat.com>
 
 	* Makefile.am:
--- a/Makefile.am	Mon Jan 25 21:49:03 2010 +0000
+++ b/Makefile.am	Mon Jan 25 21:52:19 2010 +0000
@@ -390,10 +390,10 @@
 ICEDTEA_REV="+${ICEDTEA_REVISION}"
 endif
 if HAS_PKGVERSION
-ICEDTEA_PKG="(${PKGVERSION})"
+ICEDTEA_PKG=" (${PKGVERSION})"
 endif
 
-PLUGIN_VERSION=$(ICEDTEA_NAME) $(PACKAGE_VERSION)$(ICEDTEA_REV) $(ICEDTEA_PKG)
+PLUGIN_VERSION=$(ICEDTEA_NAME) $(PACKAGE_VERSION)$(ICEDTEA_REV)$(ICEDTEA_PKG)
 
 ICEDTEA_ENV = \
 	IMPORT_BINARY_PLUGS=true \