aspell: fix shared build for missing libtool deps

fixes #989
This commit is contained in:
Tony Theodore 2015-11-21 13:35:53 +11:00
parent 54c8dffbc6
commit 9d7a8741a2
1 changed files with 5 additions and 0 deletions

View File

@ -22,5 +22,10 @@ define $(PKG)_BUILD
--enable-win32-relocatable \
--disable-curses \
--disable-nls
# libtool misses some dependency libs and there's no lt_cv* etc. options
$(if $(BUILD_SHARED),\
$(SED) -i 's#^postdeps="-#postdeps="-lpthread -#g' '$(1)/libtool')
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef