From g.olgeni@colby.it  Tue Mar 29 21:15:39 2011
Return-Path: <g.olgeni@colby.it>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 03AAE1065672;
	Tue, 29 Mar 2011 21:15:39 +0000 (UTC)
	(envelope-from g.olgeni@colby.it)
Received: from mail.colby.tv (93-62-141-58.ip22.fastwebnet.it [93.62.141.58])
	by mx1.freebsd.org (Postfix) with ESMTP id 5BCF18FC15;
	Tue, 29 Mar 2011 21:15:38 +0000 (UTC)
Received: from server.colby.local (localhost [127.0.0.1])
	by server.colby.local (8.14.4/8.14.4) with ESMTP id p2TLFbBR056776;
	Tue, 29 Mar 2011 23:15:37 +0200 (CEST)
	(envelope-from g.olgeni@colby.it)
Received: from exchange.colby.local ([192.168.1.11] helo=exchange.colby.local)
	with IPv4:25 by server.colby.local; 29 Mar 2011 23:15:37 +0200
Received: from backoffice.colby.local ([192.168.1.56]) by exchange.colby.local over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675);
	 Tue, 29 Mar 2011 23:15:37 +0200
Received: from backoffice.colby.local (localhost [127.0.0.1])
	by backoffice.colby.local (8.14.4/8.14.4) with ESMTP id p2TLFbof001989;
	Tue, 29 Mar 2011 23:15:37 +0200 (CEST)
	(envelope-from olgeni@backoffice.colby.local)
Received: (from olgeni@localhost)
	by backoffice.colby.local (8.14.4/8.14.4/Submit) id p2TLFb9c001988;
	Tue, 29 Mar 2011 23:15:37 +0200 (CEST)
	(envelope-from olgeni)
Message-Id: <201103292115.p2TLFb9c001988@backoffice.colby.local>
Date: Tue, 29 Mar 2011 23:15:37 +0200 (CEST)
From: Jimmy Olgeni <olgeni@freebsd.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: stas@freebsd.org
Subject: [PATCH] lang/sbcl: unbreak test target
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         156049
>Category:       ports
>Synopsis:       [PATCH] lang/sbcl: unbreak test target
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    stas
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Mar 29 21:20:06 UTC 2011
>Closed-Date:    Thu Mar 31 07:41:52 UTC 2011
>Last-Modified:  Thu Mar 31 07:50:10 UTC 2011
>Originator:     Jimmy Olgeni
>Release:        FreeBSD 8.2-STABLE amd64
>Organization:
>Environment:
>Description:
Running "make test" in lang/sbcl gives the following error:

===
(cd /usr/ports/lang/sbcl/work/sbcl-1.0.43/tests && /usr/bin/env CC="cc" /bin/sh run-tests.sh)
./subr.sh: LISP_EXTRA_ARG: parameter not set
*** Error code 2

Stop in /usr/ports/lang/sbcl.
===

The attached patch adds LISP_EXTRA_ARG where required.

Port maintainer (stas@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- sbcl-1.0.43.0_2,1.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/lang/sbcl/Makefile,v
retrieving revision 1.82
diff -u -u -r1.82 Makefile
--- Makefile	12 Nov 2010 14:03:04 -0000	1.82
+++ Makefile	29 Mar 2011 21:13:10 -0000
@@ -254,7 +254,7 @@
 	@${TOUCH} ${SBCL_HOME}/site-systems/.keep_me
 
 test:	build
-	(cd ${WRKSRC}/tests && ${SETENV} CC="${CC}" ${SH} run-tests.sh)
+	(cd ${WRKSRC}/tests && ${SETENV} CC="${CC}" LISP_EXTRA_ARG="${LISP_EXTRA_ARG}" ${SH} run-tests.sh)
 
 bootstrap:
 	${CP} -r ${WRKSRC} ${WRKDIR}/${NEWBOOTNAME}
--- sbcl-1.0.43.0_2,1.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->stas 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Tue Mar 29 21:20:21 UTC 2011 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=156049 
State-Changed-From-To: open->closed 
State-Changed-By: stas 
State-Changed-When: Thu Mar 31 07:41:51 UTC 2011 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=156049 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/156049: commit references a PR
Date: Thu, 31 Mar 2011 07:41:50 +0000 (UTC)

 stas        2011-03-31 07:41:42 UTC
 
   FreeBSD ports repository
 
   Modified files:
     lang/sbcl            Makefile 
   Log:
   - Unbreak "test" make target.
   
   PR:             ports/156049
   Submitted by:   Jimmy Olgeni <olgeni@freebsd.org>
   
   Revision  Changes    Path
   1.83      +1 -1      ports/lang/sbcl/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
