summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2012-12-09 15:19:51 (GMT)
committerTony Theodore <tonyt@logyst.com>2012-12-09 15:19:51 (GMT)
commita2971cdfc8f68c79b52aa0078b841b41b0e5a21a (patch)
tree0a1cbd3d883336647632a7efd1edcbe12e3b56fa /src
parent03624857a09e3ccb0e4d263c6c4b53667ee43271 (diff)
downloadmxe-a2971cdfc8f68c79b52aa0078b841b41b0e5a21a.zip
mxe-a2971cdfc8f68c79b52aa0078b841b41b0e5a21a.tar.gz
mxe-a2971cdfc8f68c79b52aa0078b841b41b0e5a21a.tar.bz2
package openexr: portability fix for systems using dash as /bin/sh
Diffstat (limited to 'src')
-rw-r--r--src/openexr.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/openexr.mk b/src/openexr.mk
index b7609d6..859f4a1 100644
--- a/src/openexr.mk
+++ b/src/openexr.mk
@@ -29,7 +29,8 @@ define $(PKG)_BUILD
--prefix='$(1)/ilmbase' \
--enable-threading=no \
--disable-posix-sem \
- CONFIG_SHELL=$(SHELL)
+ CONFIG_SHELL=$(SHELL) \
+ SHELL=$(SHELL)
$(MAKE) -C '$(1)/$(ilmbase_SUBDIR)' -j '$(JOBS)' install \
bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
cd '$(1)' && ./configure \