bugfix for package ilmbase (by Tony Theodore)

This commit is contained in:
Volker Grabsch 2010-09-12 19:44:33 +02:00
parent ce869d393f
commit d70597fd94
2 changed files with 2 additions and 2 deletions

View File

@ -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)' \

View File

@ -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 \