diff options
author | Tony Theodore <tonyt@logyst.com> | 2020-06-04 09:05:23 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2020-06-04 09:05:23 (GMT) |
commit | dcc6131619a37d8e4c2e9ba6cea700c61a9c71d6 (patch) | |
tree | a5382b9e94a5a6eaf4537178125863a73cc98b08 /src | |
parent | e9ced5e0d545d6c289d8778e097a560b7219d9f4 (diff) | |
download | mxe-dcc6131619a37d8e4c2e9ba6cea700c61a9c71d6.zip mxe-dcc6131619a37d8e4c2e9ba6cea700c61a9c71d6.tar.gz mxe-dcc6131619a37d8e4c2e9ba6cea700c61a9c71d6.tar.bz2 |
aubio jack: workaround for default python being v3
Diffstat (limited to 'src')
-rw-r--r-- | src/aubio.mk | 3 | ||||
-rw-r--r-- | src/jack.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/aubio.mk b/src/aubio.mk index 3c34ca2..d75c1f7 100644 --- a/src/aubio.mk +++ b/src/aubio.mk @@ -23,6 +23,7 @@ define $(PKG)_BUILD AR='$(TARGET)-ar' \ CC='$(TARGET)-gcc' \ PKGCONFIG='$(TARGET)-pkg-config' \ + $(PYTHON2) \ '$(BUILD_DIR)/$(waf_SUBDIR)/waf' \ configure \ -j '$(JOBS)' \ @@ -37,7 +38,7 @@ define $(PKG)_BUILD # disable txt2man and doxygen $(SED) -i '/\(TXT2MAN\|DOXYGEN\)/d' '$(1)/build/c4che/_cache.py' - cd '$(1)' && '$(BUILD_DIR)/$(waf_SUBDIR)/waf' build install + cd '$(1)' && $(PYTHON2) '$(BUILD_DIR)/$(waf_SUBDIR)/waf' build install '$(TARGET)-gcc' \ -W -Wall -Werror -ansi -pedantic \ diff --git a/src/jack.mk b/src/jack.mk index b905b5a..a7b22e8 100644 --- a/src/jack.mk +++ b/src/jack.mk @@ -24,7 +24,7 @@ define $(PKG)_BUILD CC='$(TARGET)-gcc' \ CXX='$(TARGET)-g++' \ PKGCONFIG='$(TARGET)-pkg-config' \ - ./waf configure build install \ + $(PYTHON2) waf configure build install \ -j '$(JOBS)' \ --prefix='$(PREFIX)/$(TARGET)' \ --dist-target=mingw |