From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/8732 Path: news.gmane.org!not-for-mail From: Denys Vlasenko Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH] make CFLAGS=foo considered harmful Date: Fri, 23 Oct 2015 08:47:45 +0200 Message-ID: <1445582865-4141-1-git-send-email-vda.linux@googlemail.com> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1445582903 26324 80.91.229.3 (23 Oct 2015 06:48:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Oct 2015 06:48:23 +0000 (UTC) Cc: Denys Vlasenko , musl To: Rich Felker Original-X-From: musl-return-8745-gllmg-musl=m.gmane.org@lists.openwall.com Fri Oct 23 08:48:10 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1ZpW90-0005U2-5Q for gllmg-musl@m.gmane.org; Fri, 23 Oct 2015 08:48:06 +0200 Original-Received: (qmail 11974 invoked by uid 550); 23 Oct 2015 06:48:03 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 11950 invoked from network); 23 Oct 2015 06:48:02 -0000 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Xref: news.gmane.org gmane.linux.lib.musl.general:8732 Archived-At: Signed-off-by: Denys Vlasenko CC: musl --- configure | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure b/configure index 03c0ebe..4564ad8 100755 --- a/configure +++ b/configure @@ -40,6 +40,16 @@ Some influential environment variables: Use these variables to override the choices made by configure. +Note that overriding variables on make command line (IOW, running +make CFLAGS="...") is not tested to work properly, and may result +in a severely suboptimal build. Place your overrides into environment: + + export CFLAGS="..."; make + +or + + CFLAGS="..." make + EOF exit 0 } -- 1.8.1.4