From owner-freebsd-x11@FreeBSD.ORG Mon Sep 5 21:50:16 2005 Return-Path: X-Original-To: freebsd-x11@hub.freebsd.org Delivered-To: freebsd-x11@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A42616A420 for ; Mon, 5 Sep 2005 21:50:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF84D43D46 for ; Mon, 5 Sep 2005 21:50:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j85LoF6K057626 for ; Mon, 5 Sep 2005 21:50:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j85LoF88057625; Mon, 5 Sep 2005 21:50:15 GMT (envelope-from gnats) Date: Mon, 5 Sep 2005 21:50:15 GMT Message-Id: <200509052150.j85LoF88057625@freefall.freebsd.org> To: freebsd-x11@FreeBSD.org From: Dejan Lesjak Cc: Subject: Re: ports/85735: Force imake respect CC/CXX X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dejan Lesjak List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Sep 2005 21:50:16 -0000 The following reply was made to PR ports/85735; it has been noted by GNATS. From: Dejan Lesjak To: bug-followup@freebsd.org Cc: Subject: Re: ports/85735: Force imake respect CC/CXX Date: Mon, 5 Sep 2005 23:48:10 +0200 Proposed patch actually replaces defaults with the settings of $CC and $CXX in effect at the time imake is built. This doesn't seem right. (See also ports/65277). Furthermore I seem to be unable to reproduce the case where imake would not respect $CC. If I define CC=notcc in either /etc/make.conf or try to build imake with these commands: make CC=nocc build env CC=nocc make build I always get this error: ===> Configuring for imake-6.8.2 cd ./config/imake && make -f Makefile.ini BOOTSTRAPCFLAGS="" CC="nocc" making imake with BOOTSTRAPCFLAGS= and CROSSCOMPILEFLAGS=-DCROSSCOMPILEDIR="" in config/imake nocc -o ccimake -DCROSSCOMPILEDIR=\"\" -O -I../../include -I../../imports/x11/include/X11 ccimake.c nocc: not found *** Error code 127 This seems to suggest imake is indeed respecting CC. Is there some specific case where it is not so?