]> git.sesse.net Git - mlt/blobdiff - src/swig/python/build
Complete reorganization and renaming to usable state.
[mlt] / src / swig / python / build
index 7c7ff2315b4b7c4f0fe75d32ca5c689c5a9b0eb4..160d84d4578696da04d717d98746083ce6b58904 100755 (executable)
@@ -12,13 +12,13 @@ then
        ln -sf ../mltpp.i .
 
        # Invoke swig
-       swig -c++ -I../../src `pkg-config mlt-framework --cflags` -python mltpp.i || exit $?
+       swig -c++ -I../../mlt++ `pkg-config mlt-framework --cflags` -python mltpp.i || exit $?
 
        # Compile the wrapper
-       g++ -fPIC -D_GNU_SOURCE -c -rdynamic -pthread `pkg-config mlt-framework --cflags` -I$PYTHON_INCLUDE mltpp_wrap.cxx || exit $?
+       g++ -fPIC -D_GNU_SOURCE -c -rdynamic -pthread `pkg-config mlt-framework --cflags` -I$PYTHON_INCLUDE mlt_wrap.cxx || exit $?
 
        # Create the module
-       gcc -shared mltpp_wrap.o -L../../src -lmlt++ -o _mltpp.so || exit $?
+       gcc -shared mlt_wrap.o -L../../mlt++ -lmlt++ -o _mlt.so || exit $?
 else
        echo Python not installed.
        exit 1