summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ilmbase.mk2
-rw-r--r--src/openexr.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ilmbase.mk b/src/ilmbase.mk
index 59cc9ee..1747b9e 100644
--- a/src/ilmbase.mk
+++ b/src/ilmbase.mk
@@ -29,7 +29,7 @@ define $(PKG)_BUILD
echo '/* disabled */' > '$(1)/IlmThread/IlmThreadSemaphorePosixCompat.cpp'
# Because of the previous changes, '--disable-threading' will not disable
# threading. It will just disable the unwanted check for pthread.
- cd '$(1)' && ./configure \
+ cd '$(1)' && $(SHELL) ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
diff --git a/src/openexr.mk b/src/openexr.mk
index 1a290c9..dd3362a 100644
--- a/src/openexr.mk
+++ b/src/openexr.mk
@@ -22,7 +22,7 @@ endef
define $(PKG)_BUILD
# unpack and build a native version of ilmbase
cd '$(1)' && $(call UNPACK_PKG_ARCHIVE,ilmbase)
- cd '$(1)/$(ilmbase_SUBDIR)' && ./configure \
+ cd '$(1)/$(ilmbase_SUBDIR)' && $(SHELL) ./configure \
--disable-shared \
--prefix='$(1)/ilmbase' \
--enable-threading=no \