changeset 1130:a3541e7a62b0

bugfix for package ilmbase The ilmbase package contains some basisms, so its ./configure call needs a CONFIG_SHELL argument.
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 12 Sep 2010 16:18:13 +0200
parents 29bef2a6fa4f
children 3f88f82599dc
files src/ilmbase.mk src/openexr.mk
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ilmbase.mk	Sun Sep 12 16:13:23 2010 +0200
+++ b/src/ilmbase.mk	Sun Sep 12 16:18:13 2010 +0200
@@ -33,7 +33,8 @@
         --host='$(TARGET)' \
         --disable-shared \
         --prefix='$(PREFIX)/$(TARGET)' \
-        --disable-threading
+        --disable-threading \
+        CONFIG_SHELL=$(SHELL)
     # do the first build step by hand, because programs are built that
     # generate source files
     cd '$(1)/Half' && g++ eLut.cpp -o eLut
--- a/src/openexr.mk	Sun Sep 12 16:13:23 2010 +0200
+++ b/src/openexr.mk	Sun Sep 12 16:18:13 2010 +0200
@@ -26,7 +26,8 @@
         --disable-shared \
         --prefix='$(1)/ilmbase' \
         --enable-threading=no \
-        --disable-posix-sem
+        --disable-posix-sem \
+        CONFIG_SHELL=$(SHELL)
     $(MAKE) -C '$(1)/$(ilmbase_SUBDIR)' -j '$(JOBS)' install \
         bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
     # wine confuses the cross-compiling detection, so set it explicitly