summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/guile.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/guile.mk b/src/guile.mk
index ac55bec..443f180 100644
--- a/src/guile.mk
+++ b/src/guile.mk
@@ -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)' \