Changeset f1fac53ed11e9fb044d22a189947c74408825e21
- Timestamp:
- 04/27/07 16:25:08
(1 year ago)
- Author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr>
- git-committer:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1177683908 +0000
- git-parent:
[59bc3cca8f7f3c0e2f031e6322a1b41af05d788c]
- git-author:
- Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1177683908 +0000
- Message:
bindings/python/Makefile.am: move COMPILERARG initialization in the all: target to make sure that it is defined at the right place
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc6c552e |
rf1fac53 |
|
| 10 | 10 | if BUILD_PYTHON |
|---|
| 11 | 11 | |
|---|
| | 12 | all: |
|---|
| 12 | 13 | if HAVE_WIN32 |
|---|
| 13 | 14 | COMPILERARG=--compiler=mingw32 |
|---|
| … | … | |
| 15 | 16 | COMPILERARG= |
|---|
| 16 | 17 | endif |
|---|
| 17 | | |
|---|
| 18 | | all: |
|---|
| 19 | 18 | srcdir="$(srcdir)" top_builddir="$(top_builddir)" python "$(srcdir)/setup.py" build $(COMPILERARG) "--build-base=$(top_builddir)/bindings/python" "--build-temp=$(top_builddir)/bindings/python" |
|---|
| 20 | 19 | |
|---|