Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Oct 2013 12:50:46 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r331572 - head/lang/spidermonkey17
Message-ID:  <201310251250.r9PCokpd057781@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Fri Oct 25 12:50:46 2013
New Revision: 331572
URL: http://svnweb.freebsd.org/changeset/ports/331572

Log:
  lang/spidermonkey17: Fix typo causing configure to fail
  
  - Remove spurious dangling && from configure invocation
  - While im here, pet portlint
  
  PR:		ports/182153
  PR:		ports/182197
  Submitted by:	swills
  Reported by:	Vincent Hoffman-Kazlauskas <vince@unsane.co.uk>
  Approved by:	maintainer timeout (1 month)

Modified:
  head/lang/spidermonkey17/Makefile   (contents, props changed)

Modified: head/lang/spidermonkey17/Makefile
==============================================================================
--- head/lang/spidermonkey17/Makefile	Fri Oct 25 12:42:00 2013	(r331571)
+++ head/lang/spidermonkey17/Makefile	Fri Oct 25 12:50:46 2013	(r331572)
@@ -39,7 +39,7 @@ JSH=		jsapi.h jsarena.h jsarray.h jsatom
 
 PLIST_FILES=	bin/js lib/libjs.so lib/libjs.so.1 ${JSH:S,^,include/,}
 WRKSRC=		${WRKDIR}/${SRC_DIR}
-EXTRACT_AFTER_ARGS= --exclude js/jsd
+EXTRACT_AFTER_ARGS=	--exclude js/jsd
 
 OPTIONS_DEFINE=	UTF8
 
@@ -52,7 +52,7 @@ CFLAGS+=	-DJS_C_STRINGS_ARE_UTF8
 
 do-configure:
 	${CP} ${WRKSRC}/config/Linux_All.mk \
-		${WRKSRC}/config/${OPSYS}`${UNAME} -r`.mk && \
+		${WRKSRC}/config/${OPSYS}`${UNAME} -r`.mk
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/${OPSYS}`${UNAME} -r`_DBG.OBJ/js \



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