2014-01-28 08:45:44 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# python wrapper for cross compilation in xbps
|
|
|
|
# we simply fake the output of --includes with the cross prefix.
|
|
|
|
if [ "$1" = "--includes" ]; then
|
|
|
|
echo "-I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
|
|
fi
|
|
|
|
|
2014-01-29 08:42:02 +00:00
|
|
|
exit 0
|