[MacPorts] #25557: lang/python24: incorrect include path in PortGroup
MacPorts
noreply at macports.org
Tue Jul 6 16:06:32 PDT 2010
#25557: lang/python24: incorrect include path in PortGroup
------------------------------+---------------------------------------------
Reporter: danchr@… | Owner: macports-tickets@…
Type: defect | Status: new
Priority: Normal | Milestone:
Component: ports | Version:
Keywords: haspatch | Port:
------------------------------+---------------------------------------------
The port group for Python 2.4 specifies an incorrect value for
${python.include}, as 2.4 isn't built as a framework. The following
trivial patch fixes it:
{{{
--- python24-1.0.tcl
+++ python24-1.0.tcl
@@ -37,7 +37,7 @@
set python.lib ${prefix}/lib/libpython${python.branch}.dylib
set python.libdir
${frameworks_dir}/Python.framework/Versions/${python.branch}/lib/python${python.branch}
set python.pkgd ${prefix}/lib/python${python.branch}/site-packages
-set python.include
${frameworks_dir}/Python.framework/Versions/${python.branch}/include/python${python.branch}
+set python.include ${prefix}/include/python${python.branch}
categories python
}}}
--
Ticket URL: <http://trac.macports.org/ticket/25557>
MacPorts <http://www.macports.org/>
Ports system for Mac OS
More information about the macports-tickets
mailing list