From patchwork Wed Feb 26 18:00:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 324536 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 8FB522C0099 for ; Thu, 27 Feb 2014 05:00:58 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D7E438B994; Wed, 26 Feb 2014 18:00:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id m6HlOcYr5-Zl; Wed, 26 Feb 2014 18:00:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6500B8B973; Wed, 26 Feb 2014 18:00:57 +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 CD15F1CE99D for ; Wed, 26 Feb 2014 18:00:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C89DC8AAF4 for ; Wed, 26 Feb 2014 18:00:55 +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 Kk5VwTzids-l for ; Wed, 26 Feb 2014 18:00:54 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) by whitealder.osuosl.org (Postfix) with ESMTPS id 9049E8AA19 for ; Wed, 26 Feb 2014 18:00:54 +0000 (UTC) Received: by mail-wg0-f48.google.com with SMTP id b13so1999334wgh.7 for ; Wed, 26 Feb 2014 10:00:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=rBnqiNe7jOKLBtYLRi4ueItZi+pFGunAz+7hYa8crSg=; b=LRM+kYByTd0TedRAe/H2774DzCw94pBnvT/R8PuQPEhn282Xlin5VM6TuUV39/Vsfh aCcTXV73wezW5Lwi5d4hJCD1Y8UIo0XJ+YTt/EaTjUAuqquAx5xrrJ8ptC61xEOdiGDl 5KO86h3su1SvjCxqviaWS9AA9SLagWlgJmSebkypat2zw0ycXWS9DEuABCnVU2REluwx LeEYAvrInKQY9uIkcXQjoJguqaIOyqFUpgVVo6VV1sHfHcN8e7yc1YSYP8GzI+wgQGbC 00+ElHXmF3q7gsK831DlECJoGEtdyn6pl/V1qlx0eFMi9FGzpmFMgTWa4dyrBEQtNGd6 38EQ== X-Received: by 10.180.87.164 with SMTP id az4mr5990361wib.2.1393437653128; Wed, 26 Feb 2014 10:00:53 -0800 (PST) Received: from leto.lan (host-2-97-69-117.as13285.net. [2.97.69.117]) by mx.google.com with ESMTPSA id f1sm46791906wik.1.2014.02.26.10.00.51 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 26 Feb 2014 10:00:52 -0800 (PST) From: Simon Dawson To: buildroot@busybox.net Date: Wed, 26 Feb 2014 18:00:49 +0000 Message-Id: <1393437649-22123-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] zyre: remove unnecessary autoreconf options 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 The default $(PKG)_AUTORECONF_OPT already includes the -i and -f flags, so there is no point in specifying these in the package makefile. Further, the -v option to autoreconf is not required. Signed-off-by: Simon Dawson --- package/zyre/zyre.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/package/zyre/zyre.mk b/package/zyre/zyre.mk index 405697a..66952aa 100644 --- a/package/zyre/zyre.mk +++ b/package/zyre/zyre.mk @@ -11,7 +11,6 @@ ZYRE_LICENSE_FILES = COPYING COPYING.LESSER ZYRE_INSTALL_STAGING = YES ZYRE_DEPENDENCIES = filemq ZYRE_AUTORECONF = YES -ZYRE_AUTORECONF_OPT = --install --force --verbose define ZYRE_CREATE_CONFIG_DIR mkdir -p $(@D)/config