aubio jack: workaround for default python being v3

pull/2516/head
Tony Theodore 4 years ago
parent e9ced5e0d5
commit dcc6131619

@ -23,6 +23,7 @@ define $(PKG)_BUILD
AR='$(TARGET)-ar' \ AR='$(TARGET)-ar' \
CC='$(TARGET)-gcc' \ CC='$(TARGET)-gcc' \
PKGCONFIG='$(TARGET)-pkg-config' \ PKGCONFIG='$(TARGET)-pkg-config' \
$(PYTHON2) \
'$(BUILD_DIR)/$(waf_SUBDIR)/waf' \ '$(BUILD_DIR)/$(waf_SUBDIR)/waf' \
configure \ configure \
-j '$(JOBS)' \ -j '$(JOBS)' \
@ -37,7 +38,7 @@ define $(PKG)_BUILD
# disable txt2man and doxygen # disable txt2man and doxygen
$(SED) -i '/\(TXT2MAN\|DOXYGEN\)/d' '$(1)/build/c4che/_cache.py' $(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' \ '$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \ -W -Wall -Werror -ansi -pedantic \

@ -24,7 +24,7 @@ define $(PKG)_BUILD
CC='$(TARGET)-gcc' \ CC='$(TARGET)-gcc' \
CXX='$(TARGET)-g++' \ CXX='$(TARGET)-g++' \
PKGCONFIG='$(TARGET)-pkg-config' \ PKGCONFIG='$(TARGET)-pkg-config' \
./waf configure build install \ $(PYTHON2) waf configure build install \
-j '$(JOBS)' \ -j '$(JOBS)' \
--prefix='$(PREFIX)/$(TARGET)' \ --prefix='$(PREFIX)/$(TARGET)' \
--dist-target=mingw --dist-target=mingw

Loading…
Cancel
Save