Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Dec 2010 22:04:25 GMT
From:      svn-freebsd-gecko@chruetertee.ch
To:        freebsd-gecko@freebsd.org
Subject:   [SVN-Commit] r453 - branches/experimental/Mk
Message-ID:  <201012012204.oB1M4PAU032649@trillian.chruetertee.ch>

next in thread | raw e-mail | index | archive | help
Author: beat
Date: Wed Dec  1 22:04:25 2010
New Revision: 453

Log:
- Fix some more copy-paste failures to make version checks and thunderbird
  range working

Modified:
   branches/experimental/Mk/bsd.gecko.mk

Modified: branches/experimental/Mk/bsd.gecko.mk
==============================================================================
--- branches/experimental/Mk/bsd.gecko.mk	Wed Dec  1 21:56:40 2010	(r452)
+++ branches/experimental/Mk/bsd.gecko.mk	Wed Dec  1 22:04:25 2010	(r453)
@@ -377,7 +377,7 @@
 
 # Setting/finding SeaMonkey version we want.
 .if exists(${LOCALBASE}/bin/seamonkey)
-_FIREFOX_VER!=	${LOCALBASE}/bin/seamonkey --version | ${SED} -e 's/Mozilla SeaMonkey \([0-9]\)\.\([0-9]*\).*/\1\2/'
+_SEAMONKEY_VER!=	${LOCALBASE}/bin/seamonkey --version | ${SED} -e 's/Mozilla SeaMonkey \([0-9]\)\.\([0-9]*\).*/\1\2/'
 .endif
 
 .if defined(_SEAMONKEY_VER)
@@ -415,7 +415,7 @@
 
 _THUNDERBIRD_DEFAULT_VERSION=	31
 _THUNDERBIRD_VERSIONS=			31 30
-_THUNDERBIRD_FIREFOX_RANGE_VERSIONS=	31+ 30+
+_THUNDERBIRD_RANGE_VERSIONS=	31+ 30+
 
 # For specifying [31, 30, ..]+
 _THUNDERBIRD_30P=	30 ${_THUNDERBIRD_31P}
@@ -458,7 +458,7 @@
 
 # Setting/finding Thunderbird version we want.
 .if exists(${LOCALBASE}/bin/thunderbird)
-_FIREFOX_VER!=	${LOCALBASE}/bin/thunderbird --version | ${SED} -e 's/ Thunderbird \([0-9]\)\.\([0-9]*\).*/\1\2/'
+_THUNDERBIRD_VER!=	${LOCALBASE}/bin/thunderbird --version | ${SED} -e 's/ Thunderbird \([0-9]\)\.\([0-9]*\).*/\1\2/'
 .endif
 
 .if defined(_THUNDERBIRD_VER)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012012204.oB1M4PAU032649>