From patchwork Fri Apr 27 20:13:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vanya Sergeev X-Patchwork-Id: 155584 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id D8B74B7117 for ; Sat, 28 Apr 2012 06:14:16 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8DB59909B7; Fri, 27 Apr 2012 20:14:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EJMH3jivNnnJ; Fri, 27 Apr 2012 20:14:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0301790989; Fri, 27 Apr 2012 20:14:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id B62988F753 for ; Fri, 27 Apr 2012 20:14:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A24E3909A6 for ; Fri, 27 Apr 2012 20:14:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0Siyj1k3GEiT for ; Fri, 27 Apr 2012 20:14:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-iy0-f171.google.com (mail-iy0-f171.google.com [209.85.210.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 415B790989 for ; Fri, 27 Apr 2012 20:14:10 +0000 (UTC) Received: by iadj38 with SMTP id j38so3284694iad.16 for ; Fri, 27 Apr 2012 13:14:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=jbMqB2QQW+4py3/qSXSLfdVtK09m2G3QqhWPrWtgW6o=; b=cOAqwFb28fvKp/TqAAU3Mb7kxbkdzx/OeTrVKtKS+Uh/OzxQlE40lpiwa7deBS4xN4 5rKeshB99O+DQazl44N+YC+YO71RSMxJAme/i9Gsj72Kar52PVNnxU4PisI7GZE0uuKm Fo93arpioax72kE0YuNlGxrC8ufteKcSapAWskxIxf2fNHXX3XAairZ4jX+U8YQKeXzc 68Vl3MR0KAsneNCDVBJFiD2np0b+0fyadExcc3/2tj/nQWj7mag6nK47l1HzFGXzNEmX fR6mXCVwausgwNdlcFCIq4lKvJO68RqHQqUiHA3FCVrzxZMiNS1tCEGjhexGefURxqyz cIIQ== Received: by 10.50.197.164 with SMTP id iv4mr3931355igc.73.1335557649571; Fri, 27 Apr 2012 13:14:09 -0700 (PDT) Received: from anteater-laptop.mit.edu (SENIOR-FIVE-O-FIVE.MIT.EDU. [18.244.6.250]) by mx.google.com with ESMTPS id hq3sm9573061igc.0.2012.04.27.13.14.08 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 27 Apr 2012 13:14:09 -0700 (PDT) From: Vanya Sergeev To: buildroot@busybox.net Date: Fri, 27 Apr 2012 16:13:45 -0400 Message-Id: <1335557625-19895-1-git-send-email-vsergeev@gmail.com> X-Mailer: git-send-email 1.7.10 Subject: [Buildroot] [PATCH] ngrep: removed redundant --enable-ipv6 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Option --enable-ipv6 now handled globally in autotargets configure. Signed-off-by: Vanya Sergeev --- package/ngrep/ngrep.mk | 4 ---- 1 file changed, 4 deletions(-) diff --git a/package/ngrep/ngrep.mk b/package/ngrep/ngrep.mk index e9c640a..daf7c6f 100644 --- a/package/ngrep/ngrep.mk +++ b/package/ngrep/ngrep.mk @@ -15,10 +15,6 @@ NGREP_CONF_OPT = \ --with-pcre=$(STAGING_DIR)/usr \ --disable-dropprivs -ifeq ($(BR2_INET_IPV6),y) -NGREP_CONF_OPT += --enable-ipv6 -endif - NGREP_DEPENDENCIES = libpcap pcre $(eval $(call AUTOTARGETS))