bootstrap: do not link Makefile* files

* bootstrap: Do not symlink any Makefile* files, not just Makefile.am
and Makefile.in.

Reported-by: Christopher Covington <cov@codeaurora.org>
This commit is contained in:
Дмитрий Левин 2015-03-04 14:50:19 +00:00
parent 1e8a454474
commit dca5110aaa

View File

@ -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