From patchwork Wed Jul 10 18:39:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 258221 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id E33E82C0178 for ; Thu, 11 Jul 2013 04:39:46 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B2AFB316EB; Wed, 10 Jul 2013 18:39:43 +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 rghInf1bUUXS; Wed, 10 Jul 2013 18:39:42 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 822F63215F; Wed, 10 Jul 2013 18:39:42 +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 A7BD11BFA7D for ; Wed, 10 Jul 2013 18:39:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 29D578B9E5 for ; Wed, 10 Jul 2013 18:39:40 +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 0c7rn8AEekzu for ; Wed, 10 Jul 2013 18:39:39 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 2627A8B1BC for ; Wed, 10 Jul 2013 18:39:38 +0000 (UTC) Received: from asgard (host171.201-252-80.telecom.net.ar [201.252.80.171]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r6AIdWrZ014383 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 10 Jul 2013 18:39:35 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1373481577; bh=e2TVXq9j9rvkTMjzBwiMw16a7lMwT5AXPXPhuZ49utk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=LSHZpb2xrQUxdYD0of1yNv6W5hXWJtG88VXjmbRqU/2AW/7Syq7r6V26l62XTrUGl EXn2hHvPpc+Qs6XvqjO1Rkq1iBP68Lrx2FW8InKzsamCuyg8VgVcd6+6Vcy2er/tkj bawVSUdIe+L6cTE76dSBpyh0SqX1LZ0FbhRoAeaM= Received: by asgard (sSMTP sendmail emulation); Wed, 10 Jul 2013 15:39:31 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 10 Jul 2013 15:39:18 -0300 Message-Id: <1373481558-30193-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1373481558-30193-1-git-send-email-gustavo@zacarias.com.ar> References: <1373481558-30193-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 3/3] python3: remove smtpd.py.3 sample 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 Signed-off-by: Gustavo Zacarias --- package/python3/python3.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/python3/python3.mk b/package/python3/python3.mk index ed79f8e..036d1ac 100644 --- a/package/python3/python3.mk +++ b/package/python3/python3.mk @@ -141,6 +141,7 @@ define PYTHON3_REMOVE_USELESS_FILES rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)-config rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)m-config rm -f $(TARGET_DIR)/usr/bin/python3-config + rm -f $(TARGET_DIR)/usr/bin/smtpd.py.3 for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/config-3.3m/ \ -type f -not -name pyconfig.h -a -not -name Makefile` ; do \ rm -f $$i ; \