avoid running the autotools after patching in package guile

This commit is contained in:
Volker Grabsch 2010-04-13 21:08:01 +02:00
parent f8adf81444
commit 743e56fa1d
1 changed files with 5 additions and 2 deletions

View File

@ -20,8 +20,11 @@ define $(PKG)_UPDATE
endef
define $(PKG)_BUILD
touch '$(1)/configure'
touch '$(1)/guile-readline/configure'
# avoid running the autotools after patching
find '$(1)' -name 'aclocal.m4' -exec touch {} \;
find '$(1)' -name 'configure' -exec touch {} \;
find '$(1)' -name 'Makefile.in' -exec touch {} \;
find '$(1)' -name '*.h.in' -exec touch {} \;
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \