Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Feb 2014 21:44:22 GMT
From:      svn-freebsd-gecko@chruetertee.ch
To:        freebsd-gecko@freebsd.org
Subject:   [SVN-Commit] r1524 - trunk/www/linux-seamonkey
Message-ID:  <201402282144.s1SLiMHt086352@trillian.chruetertee.ch>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Feb 28 21:44:22 2014
New Revision: 1524

Log:
strip alpha letter as well to fix warning with nightly/aurora

".../linux-seamonkey/Makefile.common" line 79: warning: String comparison operator should be either == or !=

Modified:
   trunk/www/linux-seamonkey/Makefile.common

Modified: trunk/www/linux-seamonkey/Makefile.common
==============================================================================
--- trunk/www/linux-seamonkey/Makefile.common	Fri Feb 28 21:44:14 2014	(r1523)
+++ trunk/www/linux-seamonkey/Makefile.common	Fri Feb 28 21:44:22 2014	(r1524)
@@ -76,7 +76,7 @@
 	@${DO_NADA} >>${PREFS_FILE}
 
 . if (${DISTVERSION:R:R} < 28 && ${PORTNAME} != "seamonkey") || \
- (${PORTNAME} == "seamonkey" && ${DISTVERSION:C/[0-9]*\.//:C/b.*//} < 25)
+ (${PORTNAME} == "seamonkey" && ${DISTVERSION:C/[0-9]*\.//:C/[ab].*//} < 25)
 	# dummy resident-unique for make about:memory's "measure"
 	@${REINPLACE_CMD} -i '' \
 		's,/proc/self/smaps\(.Private\),////////dev/null\1,' \



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