# HG changeset patch # User Volker Grabsch # Date 1284313473 -7200 # Node ID 3f88f82599dc0af12564484c98f96d5698caea40 # Parent a3541e7a62b019f8f7366546f24bb7e9ed1162f0 bugfix for package ilmbase (by Tony Theodore) diff -r a3541e7a62b0 -r 3f88f82599dc src/ilmbase.mk --- 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)' \ diff -r a3541e7a62b0 -r 3f88f82599dc src/openexr.mk --- 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 \