From 78c4c66e3cdc65cbc6abe30b79f28ad742f24e51 Mon Sep 17 00:00:00 2001 From: Tony Theodore Date: Sun, 30 Nov 2014 23:02:18 +1100 Subject: opus: portability fix for bashisms --- src/opus.mk | 6 +++--- 1 file 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 -- cgit v0.12