Python: remove libdir from config script, because it is also used for host builds

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-10-20 02:13:14 +02:00
parent 630a8d00b5
commit a31267bee1

View File

@ -6,7 +6,7 @@ case $1 in
--includes) echo "-I%PREFIX%/include/python2.6" ;;
--libs) echo "-lpthread -ldl -lutil -lm -lpython2.6" ;;
--cflags) echo "-I%PREFIX%/include/python2.6 -DNDEBUG %CFLAGS%" ;;
--ldflags) echo "-L%PREFIX%/lib -lpthread -ldl -lutil -lm -lpython2.6" ;;
--ldflags) echo "-lpthread -ldl -lutil -lm -lpython2.6" ;;
esac
exit 0