From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DCF29C65BAF for ; Wed, 12 Dec 2018 10:26:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A3DE22084E for ; Wed, 12 Dec 2018 10:26:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544610362; bh=lNOpj4g5HIgfoHO4rXfQ6R0O1NXv8GGA2SoF9Dx53r8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=pAIH8RaZnQMfYlJ/AW/w9msbj5Tl3ZSqjDMRUSFmF+TD1E9FrvR5j2ozyIWzhhUwH jk6Bp+4CPEemFzVVvV/OqrmUG/7of3im3MBSeGvTRFHNLCIiT6lguILR8g142O/8Tr 8qYgbyqlepKnnDy1ThPVZ6eoUcVi8ZZjKdf8gsTw= DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A3DE22084E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727249AbeLLK0B (ORCPT ); Wed, 12 Dec 2018 05:26:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59782 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726591AbeLLKZ6 (ORCPT ); Wed, 12 Dec 2018 05:25:58 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E16F93082133; Wed, 12 Dec 2018 10:25:57 +0000 (UTC) Received: from krava.brq.redhat.com (unknown [10.43.17.30]) by smtp.corp.redhat.com (Postfix) with ESMTP id 639B35ED22; Wed, 12 Dec 2018 10:25:56 +0000 (UTC) From: Jiri Olsa To: lkml Cc: Andy Shevchenko , Jonathan Cameron , Hartmut Knaack , Lars-Peter Clausen , "Herton R. Krzesinski" Subject: [PATCH 5/6] tools iio: Override CFLAGS assignments Date: Wed, 12 Dec 2018 11:25:36 +0100 Message-Id: <20181212102537.25902-6-jolsa@kernel.org> In-Reply-To: <20181212102537.25902-1-jolsa@kernel.org> References: <20181212102537.25902-1-jolsa@kernel.org> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.42]); Wed, 12 Dec 2018 10:25:58 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org So user could specify outside CFLAGS values. Cc: Andy Shevchenko Cc: Jonathan Cameron Cc: Hartmut Knaack Cc: Lars-Peter Clausen Signed-off-by: Jiri Olsa --- tools/iio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/iio/Makefile b/tools/iio/Makefile index 332ed2f6c2c2..e22378dba244 100644 --- a/tools/iio/Makefile +++ b/tools/iio/Makefile @@ -12,7 +12,7 @@ endif # (this improves performance and avoids hard-to-debug behaviour); MAKEFLAGS += -r -CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$(OUTPUT)include +override CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$(OUTPUT)include ALL_TARGETS := iio_event_monitor lsiio iio_generic_buffer ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS)) -- 2.17.2