From: Dmitry V. Levin Date: Wed, 4 Mar 2015 14:50:19 +0000 (+0000) Subject: bootstrap: do not link Makefile* files X-Git-Tag: v4.10~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dca5110aaab430f43e35c759fb84198430db4e78;p=strace bootstrap: do not link Makefile* files * bootstrap: Do not symlink any Makefile* files, not just Makefile.am and Makefile.in. Reported-by: Christopher Covington --- diff --git a/bootstrap b/bootstrap index 86598b23..92884797 100755 --- a/bootstrap +++ b/bootstrap @@ -7,7 +7,7 @@ for m in -m32 -mx32; do tests/Makefile.am > tests$m/Makefile.am for f in tests/*; do case "${f##*/}" in - Makefile.am|Makefile.in) continue;; + Makefile*) continue;; esac ln -s ../"$f" tests$m/ done