Commit f1fac53e authored by Olivier Aubert's avatar Olivier Aubert

bindings/python/Makefile.am: move COMPILERARG initialization in the all:...

bindings/python/Makefile.am: move COMPILERARG initialization in the all: target to make sure that it is defined at the right place
parent 59bc3cca
...@@ -9,13 +9,12 @@ EXTRA_DIST = vlcglue.h setup.py vlcwrapper.py vlcwidget.py \ ...@@ -9,13 +9,12 @@ EXTRA_DIST = vlcglue.h setup.py vlcwrapper.py vlcwidget.py \
if BUILD_PYTHON if BUILD_PYTHON
all:
if HAVE_WIN32 if HAVE_WIN32
COMPILERARG=--compiler=mingw32 COMPILERARG=--compiler=mingw32
else else
COMPILERARG= COMPILERARG=
endif endif
all:
srcdir="$(srcdir)" top_builddir="$(top_builddir)" python "$(srcdir)/setup.py" build $(COMPILERARG) "--build-base=$(top_builddir)/bindings/python" "--build-temp=$(top_builddir)/bindings/python" srcdir="$(srcdir)" top_builddir="$(top_builddir)" python "$(srcdir)/setup.py" build $(COMPILERARG) "--build-base=$(top_builddir)/bindings/python" "--build-temp=$(top_builddir)/bindings/python"
# FIXME: python setup.py install does not have any option to install from a different build directory # FIXME: python setup.py install does not have any option to install from a different build directory
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment