From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 9 18:20:01 2013 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 32867A68 for ; Tue, 9 Jul 2013 18:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 24C3011FD for ; Tue, 9 Jul 2013 18:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r69IK0LO037055 for ; Tue, 9 Jul 2013 18:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r69IK06Z037054; Tue, 9 Jul 2013 18:20:00 GMT (envelope-from gnats) Date: Tue, 9 Jul 2013 18:20:00 GMT Message-Id: <201307091820.r69IK06Z037054@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: dt71@gmx.com Subject: Re: misc/180414: xlint should use $CC X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dt71@gmx.com List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2013 18:20:01 -0000 The following reply was made to PR misc/180414; it has been noted by GNATS. From: dt71@gmx.com To: bug-followup@FreeBSD.org Cc: Subject: Re: misc/180414: xlint should use $CC Date: Tue, 09 Jul 2013 20:17:46 +0200 This is a multi-part message in MIME format. --------------000405000503060306030401 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Supplying the CC make variable as an environment variable sounds acceptable. --------------000405000503060306030401 Content-Type: text/x-patch; name="xlint.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="xlint.patch" Index: usr.bin/xlint/llib/Makefile =================================================================== --- usr.bin/xlint/llib/Makefile (revision 253101) +++ usr.bin/xlint/llib/Makefile (working copy) @@ -9,9 +9,9 @@ CLEANFILES+= ${LIBS} llib-lposix.ln: llib-lposix - ${LINT} ${LINTFLAGS} -Cposix ${.ALLSRC} + CC=${CC:Q} ${LINT} ${LINTFLAGS} -Cposix ${.ALLSRC} llib-lstdc.ln: llib-lstdc - ${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC} + CC=${CC:Q} ${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC} .include --------------000405000503060306030401--