X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2B%2B%2Fswig%2Fpython%2Fbuild;fp=mlt%2B%2B%2Fswig%2Fpython%2Fbuild;h=7b980c30864c7a6e4fea1cad787d1bbf181dfce9;hb=8403dd0615cfabca5f319599083801a3e1153e70;hp=5cd89d3dcc4e56bb4cd08039c01a6a52bc994dac;hpb=f1ea4a839817b2d5e08a28dd9edc103e58782dd6;p=melted diff --git a/mlt++/swig/python/build b/mlt++/swig/python/build index 5cd89d3..7b980c3 100755 --- a/mlt++/swig/python/build +++ b/mlt++/swig/python/build @@ -12,10 +12,10 @@ then ln -sf ../mltpp.i . # Invoke swig - swig -c++ -I../../src `mlt-config --cflags` -python mltpp.i || exit $? + swig -c++ -I../../src `pkg-config mlt-framework --cflags` -python mltpp.i || exit $? # Compile the wrapper - g++ -fPIC -D_GNU_SOURCE -c -rdynamic -pthread `mlt-config --cflags` -I$PYTHON_INCLUDE mltpp_wrap.cxx || exit $? + g++ -fPIC -D_GNU_SOURCE -c -rdynamic -pthread `pkg-config mlt-framework --cflags` -I$PYTHON_INCLUDE mltpp_wrap.cxx || exit $? # Create the module ld -shared mltpp_wrap.o -L../../src -lmlt++ -o _mltpp.so || exit $?