bugfix for package libgpg_error

This commit is contained in:
Tony Theodore 2010-09-18 21:15:38 +02:00
parent 95115cd984
commit 8c2cb2c0b3
1 changed files with 5 additions and 1 deletions

View File

@ -19,13 +19,17 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
cd '$(1)' && ./autogen.sh
cd '$(1)' && aclocal -I m4
cd '$(1)' && autoheader
cd '$(1)' && automake --gnu
cd '$(1)' && autoconf
# wine confuses the cross-compiling detection, so set it explicitly
$(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--disable-nls \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=