10 lines
220 B
Plaintext
10 lines
220 B
Plaintext
|
#!/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
|
||
|
|
||
|
return 0
|