Tue Dec 25 23:47:39 2012 UTC ()
configure needs the path to mkdir as its used in installed files.


(sbd)
diff -r1.3 -r1.4 pkgsrc/lang/python33/Makefile

cvs diff -r1.3 -r1.4 pkgsrc/lang/python33/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/python33/Attic/Makefile 2012/12/13 20:22:44 1.3
+++ pkgsrc/lang/python33/Attic/Makefile 2012/12/25 23:47:39 1.4
@@ -1,29 +1,30 @@ @@ -1,29 +1,30 @@
1# $NetBSD: Makefile,v 1.3 2012/12/13 20:22:44 jperkin Exp $ 1# $NetBSD: Makefile,v 1.4 2012/12/25 23:47:39 sbd Exp $
2 2
3.include "dist.mk" 3.include "dist.mk"
4 4
5PKGNAME= python33-${PY_DISTVERSION} 5PKGNAME= python33-${PY_DISTVERSION}
6PKGREVISION= 1 6PKGREVISION= 1
7CATEGORIES= lang python 7CATEGORIES= lang python
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.python.org/ 10HOMEPAGE= http://www.python.org/
11COMMENT= Interpreted, interactive, object-oriented programming language 11COMMENT= Interpreted, interactive, object-oriented programming language
12LICENSE= python-software-foundation 12LICENSE= python-software-foundation
13 13
14CONFLICTS+= python-[0-9]* 14CONFLICTS+= python-[0-9]*
15 15
16GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
 17CONFIGURE_ENV+= ac_cv_path_mkdir=${TOOLS_PATH.mkdir:Q}
17CONFIGURE_ARGS+= --with-threads 18CONFIGURE_ARGS+= --with-threads
18CONFIGURE_ARGS+= --enable-shared 19CONFIGURE_ARGS+= --enable-shared
19CONFIGURE_ARGS+= OPT=${CFLAGS:M*:Q} 20CONFIGURE_ARGS+= OPT=${CFLAGS:M*:Q}
20CONFIGURE_ARGS+= --with-system-ffi 21CONFIGURE_ARGS+= --with-system-ffi
21CONFIGURE_ARGS+= --without-pymalloc 22CONFIGURE_ARGS+= --without-pymalloc
22 23
23USE_LANGUAGES= c c++ 24USE_LANGUAGES= c c++
24 25
25PTHREAD_OPTS+= require 26PTHREAD_OPTS+= require
26.include "../../mk/pthread.buildlink3.mk" 27.include "../../mk/pthread.buildlink3.mk"
27 28
28.include "../../mk/bsd.prefs.mk" 29.include "../../mk/bsd.prefs.mk"
29 30