summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2014-11-30 12:02:18 (GMT)
committerTony Theodore <tonyt@logyst.com>2014-11-30 12:02:18 (GMT)
commit78c4c66e3cdc65cbc6abe30b79f28ad742f24e51 (patch)
tree7ae8018990c27d2a5619cab492768e3ce58ce0e4
parente94aa0a901bed6d92d71b21e1dffa604a9479daf (diff)
downloadmxe-78c4c66e3cdc65cbc6abe30b79f28ad742f24e51.zip
mxe-78c4c66e3cdc65cbc6abe30b79f28ad742f24e51.tar.gz
mxe-78c4c66e3cdc65cbc6abe30b79f28ad742f24e51.tar.bz2
opus: portability fix for bashisms
-rw-r--r--src/opus.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opus.mk b/src/opus.mk
index 3dac60f..b5f4964 100644
--- a/src/opus.mk
+++ b/src/opus.mk
@@ -21,10 +21,10 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
- cd '$(1)' && ./configure \
+ cd '$(1)' && $(SHELL) ./configure \
$(MXE_CONFIGURE_OPTS)
- $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_CRUFT)
- $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_CRUFT)
+ $(MAKE) -C '$(1)' -j '$(JOBS)' SHELL=$(SHELL) $(MXE_DISABLE_CRUFT)
+ $(MAKE) -C '$(1)' -j 1 install SHELL=$(SHELL) $(MXE_DISABLE_CRUFT)
rm -f '$(PREFIX)/$(TARGET)'/share/man/man3/opus_*.3
rm -f '$(PREFIX)/$(TARGET)'/share/man/man3/opus.h.3
rm -rf '$(PREFIX)/$(TARGET)'/share/doc/opus/html