changeset 860:8fb92c90dbc3

avoid running the autotools after patching in package guile
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 13 Apr 2010 21:08:01 +0200
parents 4efc653d2cf2
children 6c312e7050ba
files src/guile.mk
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/guile.mk	Tue Apr 13 11:24:26 2010 +0200
+++ b/src/guile.mk	Tue Apr 13 21:08:01 2010 +0200
@@ -20,8 +20,11 @@
 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)' \