diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2013-10-25 12:50:46 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2013-10-25 12:50:46 +0000 |
commit | a0ab8efc71a6fa90d9045a44a7f7747a53054cde (patch) | |
tree | 63d9d9a387fbaa1abad50701c27405e4e202e9b3 | |
parent | Fix package list. (diff) |
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)
Notes
Notes:
svn path=/head/; revision=331572
-rw-r--r-- | lang/spidermonkey17/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/spidermonkey17/Makefile b/lang/spidermonkey17/Makefile index ade636730608..92addbb566f1 100644 --- a/lang/spidermonkey17/Makefile +++ b/lang/spidermonkey17/Makefile @@ -39,7 +39,7 @@ JSH= jsapi.h jsarena.h jsarray.h jsatom.h jsautocfg.h jsbool.h \ 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 \ |