From owner-svn-ports-head@FreeBSD.ORG Fri Oct 25 12:50:46 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BEC87190; Fri, 25 Oct 2013 12:50:46 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB2202423; Fri, 25 Oct 2013 12:50:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9PCokai057782; Fri, 25 Oct 2013 12:50:46 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9PCokpd057781; Fri, 25 Oct 2013 12:50:46 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201310251250.r9PCokpd057781@svn.freebsd.org> From: Kubilay Kocak Date: Fri, 25 Oct 2013 12:50:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331572 - head/lang/spidermonkey17 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Oct 2013 12:50:46 -0000 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 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 \