From patchwork Sat Aug 18 14:04:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Shawn J. Goff" X-Patchwork-Id: 178467 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 9A4022C009C for ; Sun, 19 Aug 2012 00:05:20 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EFFCE8F4B9; Sat, 18 Aug 2012 14:05:15 +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 MJbzr4kAVKcv; Sat, 18 Aug 2012 14:05:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 794908F487; Sat, 18 Aug 2012 14:05:11 +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 28B808F783 for ; Sat, 18 Aug 2012 14:05:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1DBD48F487 for ; Sat, 18 Aug 2012 14:05:10 +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 9M8TpCwkk9od for ; Sat, 18 Aug 2012 14:05:08 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-gh0-f171.google.com (mail-gh0-f171.google.com [209.85.160.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 978858F0B6 for ; Sat, 18 Aug 2012 14:05:08 +0000 (UTC) Received: by ghy16 with SMTP id 16so8690992ghy.16 for ; Sat, 18 Aug 2012 07:05:07 -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=L/x+AqHHpa79YVkiEOSPt2XNfas1GFQaf8hWWp6Uuqk=; b=RrNB0sViUAaXspSvPGOWJSMv7+hZu5JwbwAHk9bbsXkGbnv4KjcskEUuledNyQh6yF dx7Rt/TUZOZ3hpyZqGDVH7n1LB7T7VFnzzPsLtesOF7HqROcez3MRmzJPwP/nSoFcGDG Bar+qtnSAH5P+/luk2q1LegIq1AFVxHZyGf2XhhsSGalJ/uJse2oX4qW8JyT6+hKgH1m d3C4BmfaF9Q4za0+fF67rtJrjwRmzW+USiSZjHfHNE3ZvSdhmDW5Ih06Jc/fhJQyxIqW tbbzrUDFOmXMSMFtqCLG1ra0yAsdKCJEZiS8CVCPYnRobucImuayGqVVUhl2j2DyzAXo DHnA== Received: by 10.236.186.101 with SMTP id v65mr13462065yhm.23.1345298707400; Sat, 18 Aug 2012 07:05:07 -0700 (PDT) Received: from shawnihilator.ac4s.local (65-113-179-194.dia.static.qwest.net. [65.113.179.194]) by mx.google.com with ESMTPS id k2sm9486297anl.11.2012.08.18.07.05.06 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 18 Aug 2012 07:05:06 -0700 (PDT) From: "Shawn J. Goff" To: buildroot@busybox.net Date: Sat, 18 Aug 2012 10:04:16 -0400 Message-Id: <1345298656-12714-1-git-send-email-shawnjgoff@gmail.com> X-Mailer: git-send-email 1.7.11.1 Subject: [Buildroot] [PATCH] ifplugd: add --with-initdir= to config command 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 From: "Shawn J. Goff" ifplugd refuses to configure without this set. --- package/ifplugd/ifplugd.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/ifplugd/ifplugd.mk b/package/ifplugd/ifplugd.mk index 1e11c14..d031a97 100644 --- a/package/ifplugd/ifplugd.mk +++ b/package/ifplugd/ifplugd.mk @@ -12,7 +12,7 @@ IFPLUGD_AUTORECONF = YES # install-strip unconditionally overwrites $(TARGET_DIR)/etc/ifplugd/ifplugd.* IFPLUGD_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-exec -IFPLUGD_CONF_OPT = --disable-lynx +IFPLUGD_CONF_OPT = --disable-lynx --with-initdir=/etc/init.d/ IFPLUGD_DEPENDENCIES = libdaemon # Prefer big ifplugd