2014-01-28 09:45:44 +01: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 09:42:02 +01:00
|
|
|
exit 0
|