From patchwork Thu Oct 1 16:56:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tim Harvey X-Patchwork-Id: 525191 X-Patchwork-Delegate: jow@openwrt.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 18D2D140B0D for ; Fri, 2 Oct 2015 02:56:07 +1000 (AEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 7BDA328C7CE; Thu, 1 Oct 2015 18:54:38 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id D955B28C7CB for ; Thu, 1 Oct 2015 18:54:32 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gateworks. - helo: .mail-pa0-f48.google. - helo-domain: .google.) FROM/MX_MATCHES_NOT_HELO(DOMAIN)=1; rate: -5.5 Received: from mail-pa0-f48.google.com (mail-pa0-f48.google.com [209.85.220.48]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Thu, 1 Oct 2015 18:54:31 +0200 (CEST) Received: by pablk4 with SMTP id lk4so79040385pab.3 for ; Thu, 01 Oct 2015 09:55:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=FhPlXuM7QTb+6lMB9RdPc/KD9jaDqQ17M9QWaKSX1Pw=; b=U1mxHYRh4UwXlsG2VHHtyS5XAqbWyM0P6jgWVrwA+LkUnNUQQmlngZKMN1ZgmGNE+k NMw7WfKUkS5uYRVNMGcTyfut8yYjK+mazNhMPqmYfoRcGxw+wJ5ZxS5n664nbncQ7zVx 7Fyn3CMe519CyVgTLTgJkAzUlf+jlRgf1di5F2VUUWgYn219n7wC9ieXk/4YwT95iWW+ xqP/LG8oy8Tl6ceh0c+JnxfdVWNqCYFLipgp0cK/sbIPOOJTO1wP9I7Nvb5v92HziXyp T0CAXyblDwt1Wtfb6MK7VizGVIQhBNfWHxnGN3/XO9C8HAF04hN5Cq1U5sjB2nzoMX9b EzPA== X-Gm-Message-State: ALoCoQmKOkeGQRvoaIoP65oac1udFAEIrIlVB2jtwEnLimfaxNZOFy3reR/pTPnG/7gNBPsFjOtk X-Received: by 10.66.216.1 with SMTP id om1mr13479447pac.51.1443718552665; Thu, 01 Oct 2015 09:55:52 -0700 (PDT) Received: from tharvey.gw (68-189-91-139.static.snlo.ca.charter.com. [68.189.91.139]) by smtp.gmail.com with ESMTPSA id rx8sm7633119pbb.90.2015.10.01.09.55.51 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 01 Oct 2015 09:55:51 -0700 (PDT) From: Tim Harvey To: openwrt-devel@lists.openwrt.org Date: Thu, 1 Oct 2015 09:56:23 -0700 Message-Id: <1443718583-11177-1-git-send-email-tharvey@gateworks.com> X-Mailer: git-send-email 1.9.1 Subject: [OpenWrt-Devel] [PATCH] collectd: disable perl bindings from dev host X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" if a user's env has PERL_MM_OPT defined collect will fail to build. Adding --with-perl-bindings="" will override this env var. Signed-off-by: Tim Harvey --- utils/collectd/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/collectd/Makefile b/utils/collectd/Makefile index 03f3001..88cd5f6 100644 --- a/utils/collectd/Makefile +++ b/utils/collectd/Makefile @@ -185,6 +185,7 @@ CONFIGURE_ARGS+= \ --disable-debug \ --enable-daemon \ --with-nan-emulation \ + --with-perl-bindings= \ --without-libgcrypt CONFIGURE_VARS+= \