changeset 1131:3f88f82599dc

bugfix for package ilmbase (by Tony Theodore)
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 12 Sep 2010 19:44:33 +0200
parents a3541e7a62b0
children d4ccfc3cfdd4
files src/ilmbase.mk src/openexr.mk
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ilmbase.mk	Sun Sep 12 16:18:13 2010 +0200
+++ b/src/ilmbase.mk	Sun Sep 12 19:44:33 2010 +0200
@@ -29,7 +29,7 @@
     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)' \
--- a/src/openexr.mk	Sun Sep 12 16:18:13 2010 +0200
+++ b/src/openexr.mk	Sun Sep 12 19:44:33 2010 +0200
@@ -22,7 +22,7 @@
 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 \