Description: this patch avoids linking against libpython
 From Debian's Python Policy, Chapter 2.1:
 .
 Some distributions link extensions to libpython, but this is
 not the case in Debian as symbols might as well be resolved
 by /usr/bin/pythonX.Y which is not linked to libpython.
Author: Sebastian Reichel <sre@debian.org>
Last-Update: 2011-11-04

--- radare2-bindings-0.8.8.orig/rules.mk
+++ radare2-bindings-0.8.8/rules.mk
@@ -49,7 +49,7 @@ else
 	LIB=`echo $@ | sed -e s,.${SOEXT},,` ; \
 	case "${LANG}" in \
 	"python") \
-		${CXX} -fPIC -shared $${LIB}_wrap.cxx `../python-config-wrapper --cflags --libs` \
+		${CXX} -fPIC -shared $${LIB}_wrap.cxx `../python-config-wrapper --cflags` \
 			`pkg-config --cflags --libs $${LIB}` ${CFLAGS} ${LDFLAGS} -o ${LIBS_PFX}$@ ; \
 		[ "`uname`" = Darwin ] && cp ${LIBPFX}$@ `echo $@|sed -e s,.${SOEXT},.so,` ; \
 		;; \
