From patchwork Thu Oct 3 02:09:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danomi Manchego X-Patchwork-Id: 280202 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 EFA962C00AA for ; Thu, 3 Oct 2013 12:10:14 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 42BBB32D76; Thu, 3 Oct 2013 02:10:13 +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 2ri3qDk4kt5Z; Thu, 3 Oct 2013 02:10:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id D612632AF4; Thu, 3 Oct 2013 02:10: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 CCE051CE6D1 for ; Thu, 3 Oct 2013 02:10:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CB00E8D424 for ; Thu, 3 Oct 2013 02:10: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 UPFHdbh5MuMd for ; Thu, 3 Oct 2013 02:10:10 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from qmta12.westchester.pa.mail.comcast.net (qmta12.westchester.pa.mail.comcast.net [76.96.59.227]) by whitealder.osuosl.org (Postfix) with ESMTP id 2A18B8D047 for ; Thu, 3 Oct 2013 02:10:10 +0000 (UTC) Received: from omta06.westchester.pa.mail.comcast.net ([76.96.62.51]) by qmta12.westchester.pa.mail.comcast.net with comcast id YRGq1m00716LCl05CSA9g0; Thu, 03 Oct 2013 02:10:09 +0000 Received: from localhost.localdomain ([68.37.48.40]) by omta06.westchester.pa.mail.comcast.net with comcast id YSA31m00M0s1VyU3SSA94p; Thu, 03 Oct 2013 02:10:09 +0000 From: Danomi Manchego To: buildroot@busybox.net Date: Wed, 2 Oct 2013 22:09:59 -0400 Message-Id: <1380766200-2443-1-git-send-email-danomimanchego123@gmail.com> X-Mailer: git-send-email 1.7.9.5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1380766209; bh=1vOs3Dbibk5nLCfrc6DMlA4A+3kmSOWkR2kuLl7xQYY=; h=Received:Received:From:To:Subject:Date:Message-Id; b=ACBPIhtlymTqwr0BeC+RAyveEJl94CptOkJ2MXplNThdzkvxpKf1Qt3cOasrD2k/r g/eR100BqP8Lvf2HbAcbdbkW8Am0v6WPob+ve7wtoW4Kr3t5bU4s/gvShAkevjp1Oh qRapIz9TDQ2p884QXFjNbbQIY1eQD3TUin2tTjJXs1QL1jNH+PNDLm8Xi3wt09DmM1 3Y+zOT57zTDBO2JzsoJD9bCJOnaMbc6XUjYWo5zg8jxXt7RV7wEeFjO9y8xy8dAIzi bQKb4oD1BSc4unjTtu9op467G62LyXAE+dj3gtUT+DWQQwG5l1dev+bfPdzHRcJl7h Z3KT7jpcJErPg== Subject: [Buildroot] [PATCH] python-pygame: fix _python_srcdir 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 previous expression for _python_srcdir forgot the dash between "python" and the version, so the path was actually non-existent. Change the expression to "$(PYTHON_DIR)", which is simpler, and matches python-crc16 and python-pyzmq. Signed-off-by: Danomi Manchego --- I don't actually know if _python_srcdir needs to be there, but if it's there, then it shouldn't point to an invalid location. --- package/python-pygame/python-pygame.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/python-pygame/python-pygame.mk b/package/python-pygame/python-pygame.mk index 739ba45..123b0eb 100644 --- a/package/python-pygame/python-pygame.mk +++ b/package/python-pygame/python-pygame.mk @@ -86,7 +86,7 @@ define PYTHON_PYGAME_BUILD_CMDS LDSHARED="$(TARGET_CROSS)gcc -shared" \ CROSS_COMPILING=yes \ _python_sysroot=$(STAGING_DIR) \ - _python_srcdir=$(BUILD_DIR)/python$(PYTHON_VERSION) \ + _python_srcdir=$(PYTHON_DIR) \ _python_prefix=/usr \ _python_exec_prefix=/usr \ $(HOST_DIR)/usr/bin/python setup.py build)