From ashish.is at lostca.se Mon Mar 2 02:36:39 2015 From: ashish.is at lostca.se (Ashish SHUKLA) Date: Mon, 2 Mar 2015 08:06:39 +0530 Subject: [Linedit-devel] [PATCH] Remove hardcoded path to GCC Message-ID: <1425263799-12769-1-git-send-email-ashish.is@lostca.se> FreeBSD 10.x and later don't have GCC in base system, and rather use clang, so to make sure it installs fine on those hosts, change the path to slightly more conventional "/usr/bin/cc". --- linedit.asd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linedit.asd b/linedit.asd index 103334b..e6b6701 100644 --- a/linedit.asd +++ b/linedit.asd @@ -26,7 +26,7 @@ ;;;; C compiler -(defvar *gcc* "/usr/bin/gcc") +(defvar *gcc* "/usr/bin/cc") (defvar *gcc-options* #-(or darwin macosx) -- 2.2.1 From julian at cipht.net Thu Mar 5 14:53:21 2015 From: julian at cipht.net (Julian Squires) Date: Thu, 5 Mar 2015 09:53:21 -0500 Subject: [Linedit-devel] [PATCH] Remove hardcoded path to GCC In-Reply-To: <1425263799-12769-1-git-send-email-ashish.is@lostca.se> References: <1425263799-12769-1-git-send-email-ashish.is@lostca.se> Message-ID: This seems reasonable. I've applied the patch in the common-lisp.net git repo. Thanks. On Sun, Mar 1, 2015 at 9:36 PM, Ashish SHUKLA wrote: > FreeBSD 10.x and later don't have GCC in base system, and rather use > clang, so to make sure it installs fine on those hosts, change the > path to slightly more conventional "/usr/bin/cc". > --- > linedit.asd | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/linedit.asd b/linedit.asd > index 103334b..e6b6701 100644 > --- a/linedit.asd > +++ b/linedit.asd > @@ -26,7 +26,7 @@ > > ;;;; C compiler > > -(defvar *gcc* "/usr/bin/gcc") > +(defvar *gcc* "/usr/bin/cc") > > (defvar *gcc-options* > #-(or darwin macosx) > -- > 2.2.1 > > > _______________________________________________ > Linedit-devel mailing list > Linedit-devel at common-lisp.net > https://mailman.common-lisp.net/cgi-bin/mailman/listinfo/linedit-devel -- Julian Squires