From patchwork Thu Oct 2 22:03:45 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Engelhardt X-Patchwork-Id: 396123 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ganesha.gnumonks.org (ganesha.gnumonks.org [IPv6:2001:780:45:1d:225:90ff:fe52:c662]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4030F140120 for ; Fri, 3 Oct 2014 08:05:46 +1000 (EST) Received: from localhost ([127.0.0.1] helo=ganesha.gnumonks.org) by ganesha.gnumonks.org with esmtp (Exim 4.72) (envelope-from ) id 1XZoV5-0005ey-B5; Fri, 03 Oct 2014 00:05:27 +0200 Received: from ares08.inai.de ([46.4.84.70]) by ganesha.gnumonks.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1XZoTS-0005cu-MJ for openbsc@lists.osmocom.org; Fri, 03 Oct 2014 00:03:49 +0200 Received: by ares08.inai.de (Postfix, from userid 25121) id 7F2A610679BF6; Fri, 3 Oct 2014 00:03:46 +0200 (CEST) From: Jan Engelhardt To: holger@freyther.de Subject: [PATCH 2/2] build: remove all_includes Date: Fri, 3 Oct 2014 00:03:45 +0200 Message-Id: <1412287425-28003-3-git-send-email-jengelh@inai.de> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1412287425-28003-1-git-send-email-jengelh@inai.de> References: <1412287425-28003-1-git-send-email-jengelh@inai.de> X-Spam-Score: 0.1 (/) X-Spam-Report: SpamASsassin versoin 3.3.1 on ganesha.gnumonks.org summary: Content analysis details: (0.1 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 0.1 TW_KG BODY: Odd Letter Triples with KG Cc: openbsc@lists.osmocom.org X-BeenThere: openbsc@lists.osmocom.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Development of the OpenBSC GSM base station controller List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: openbsc-bounces@lists.osmocom.org Errors-To: openbsc-bounces@lists.osmocom.org This variable is never set and could therefore be removed. --- Makefile.am | 1 - examples/Makefile.am | 2 +- examples/channel/Makefile.am | 2 +- src/Makefile.am | 2 +- src/channel/abis/Makefile.am | 2 +- tests/Makefile.am | 2 +- 6 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile.am b/Makefile.am index c8a05a3..519d1ae 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,6 @@ AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6 ACLOCAL_AMFLAGS = -I m4 -AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include SUBDIRS = include src examples tests pkgconfigdir = $(libdir)/pkgconfig diff --git a/examples/Makefile.am b/examples/Makefile.am index f8cfc8f..ddfaa48 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include +AM_CPPFLAGS = -I$(top_srcdir)/include AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) AM_LDFLAGS = $(COVERAGE_LDFLAGS) diff --git a/examples/channel/Makefile.am b/examples/channel/Makefile.am index 4191c94..c417909 100644 --- a/examples/channel/Makefile.am +++ b/examples/channel/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include +AM_CPPFLAGS = -I$(top_srcdir)/include AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOABIS_CFLAGS) $(COVERAGE_CFLAGS) AM_LDFLAGS = $(COVERAGE_LDFLAGS) diff --git a/src/Makefile.am b/src/Makefile.am index ca40152..7fbdaf2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,7 +2,7 @@ # Please read Chapter 6 "Library interface versions" of the libtool documentation before making any modification LIBVERSION=2:0:0 -AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir) +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(COVERAGE_CFLAGS) AM_LDFLAGS = $(COVERAGE_LDFLAGS) diff --git a/src/channel/abis/Makefile.am b/src/channel/abis/Makefile.am index 7b744f2..9ccce1d 100644 --- a/src/channel/abis/Makefile.am +++ b/src/channel/abis/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir) +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS= -fPIC -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(COVERAGE_CFLAGS) AM_LDFLAGS = $(COVERAGE_LDFLAGS) diff --git a/tests/Makefile.am b/tests/Makefile.am index 0c1fed3..a986940 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,4 @@ -AM_CFLAGS = -Wall $(all_includes) -I$(top_srcdir)/include $(LIBOSMOCORE_CFLAGS) +AM_CFLAGS = -Wall -I$(top_srcdir)/include $(LIBOSMOCORE_CFLAGS) AM_LDFLAGS = $(LIBOSMOCORE_LDFLAGS) check_PROGRAMS = osmux/osmux_test