From patchwork Wed Dec 10 22:53:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 419887 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 7B0D8140100 for ; Thu, 11 Dec 2014 09:54:28 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 0A893957F6; Wed, 10 Dec 2014 22:54:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id anDQV5X38zlV; Wed, 10 Dec 2014 22:54:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id C93FF95867; Wed, 10 Dec 2014 22:54:20 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 2ED821CEE39 for ; Wed, 10 Dec 2014 22:54:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 2C1C0333BA for ; Wed, 10 Dec 2014 22:54:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xgSJ4BEAhuO5 for ; Wed, 10 Dec 2014 22:54:10 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by silver.osuosl.org (Postfix) with ESMTPS id AB9EC33C5B for ; Wed, 10 Dec 2014 22:54:10 +0000 (UTC) Received: from localhost.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id F22949400A0; Wed, 10 Dec 2014 23:53:38 +0100 (CET) From: Romain Naour To: buildroot@buildroot.org Date: Wed, 10 Dec 2014 23:53:56 +0100 Message-Id: <1418252037-26636-12-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1418252037-26636-1-git-send-email-romain.naour@openwide.fr> References: <1418252037-26636-1-git-send-email-romain.naour@openwide.fr> Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH v3 11/12] binutils: enable poison system directories option X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Thomas Petazzoni This commit enables the poison system directories option, which is now available thanks to the binutils patches that have been added. Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" Acked-by: Romain Naour Tested-by: Romain Naour --- package/binutils/binutils.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index b8dab5d..9a9bb94 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -68,6 +68,7 @@ HOST_BINUTILS_CONF_OPTS = --disable-multilib --disable-werror \ --target=$(GNU_TARGET_NAME) \ --disable-shared --enable-static \ --with-sysroot=$(STAGING_DIR) \ + --enable-poison-system-directories \ $(BINUTILS_DISABLE_GDB_CONF_OPTS) \ $(BINUTILS_EXTRA_CONFIG_OPTIONS)