From patchwork Wed Sep 7 15:43:46 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theo Debrouwere X-Patchwork-Id: 667079 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sTnng5wGKz9s4n for ; Thu, 8 Sep 2016 01:44:07 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 63BA631B84; Wed, 7 Sep 2016 15:44:02 +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 yeoUVxJVYDdi; Wed, 7 Sep 2016 15:44:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A8A4031B8E; Wed, 7 Sep 2016 15:44:00 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id D28DE1C2BFD for ; Wed, 7 Sep 2016 15:43:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id ADCB831B5F for ; Wed, 7 Sep 2016 15:43:58 +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 MJa5zcXURDdB for ; Wed, 7 Sep 2016 15:43:55 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mailrelay108.isp.belgacom.be (mailrelay108.isp.belgacom.be [195.238.20.135]) by silver.osuosl.org (Postfix) with ESMTPS id ABBAC2DE38 for ; Wed, 7 Sep 2016 15:43:54 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2D3BgCsNNBX/0MQsltdHAEBFwEBgxoBA?= =?us-ascii?q?QEBAR4eOXyCeoVQrWOCD4IfhXoEgWg7EgECAQEBAQEBAV4nhGIGViMQCEk5Hhm?= =?us-ascii?q?ITrx3hi+HLYIthRAFmVmBZIQ+gwMFhhMCgVaOAQKQSyUEK4IZAQsBgiw6NIVWA?= =?us-ascii?q?QEB?= Received: from 67.16-178-91.adsl-dyn.isp.belgacom.be (HELO homeserver) ([91.178.16.67]) by relay.proximus.be with ESMTP; 07 Sep 2016 17:43:53 +0200 Received: from tdebrouw by homeserver with local (Exim 4.87) (envelope-from ) id 1bhf0z-0003oB-Ax; Wed, 07 Sep 2016 17:43:53 +0200 From: Theo Debrouwere To: buildroot@buildroot.org Date: Wed, 7 Sep 2016 17:43:46 +0200 Message-Id: <1473263026-14588-2-git-send-email-theo.debrouwere@skynet.be> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1473263026-14588-1-git-send-email-theo.debrouwere@skynet.be> References: <1473263026-14588-1-git-send-email-theo.debrouwere@skynet.be> Cc: Theo Debrouwere , Theo Debrouwere Subject: [Buildroot] [PATCH] package/php: explicitly disable phpdbg. 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" When building php, the package will also build/install phpdbg. This patch explicitly disables this behaviour. Signed-off-by: Theo Debrouwere --- package/php/php.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/php/php.mk b/package/php/php.mk index d7e27a1..a63a8df 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -19,7 +19,9 @@ PHP_CONF_OPTS = \ --disable-all \ --without-pear \ --with-config-file-path=/etc \ + --enable-phpdbg=no \ --disable-rpath + PHP_CONF_ENV = \ ac_cv_func_strcasestr=yes \ EXTRA_LIBS="$(PHP_EXTRA_LIBS)"