Dmitry V. Levin
dca5110aaa
* bootstrap: Do not symlink any Makefile* files, not just Makefile.am and Makefile.in. Reported-by: Christopher Covington <cov@codeaurora.org>
19 lines
325 B
Bash
Executable File
19 lines
325 B
Bash
Executable File
#!/bin/sh -eu
|
|
|
|
for m in -m32 -mx32; do
|
|
mkdir -p tests$m
|
|
find tests$m -type l -delete
|
|
sed "s/^AM_CFLAGS[[:space:]]*=.*/& $m/" \
|
|
tests/Makefile.am > tests$m/Makefile.am
|
|
for f in tests/*; do
|
|
case "${f##*/}" in
|
|
Makefile*) continue;;
|
|
esac
|
|
ln -s ../"$f" tests$m/
|
|
done
|
|
done
|
|
|
|
./xlat/gen.sh
|
|
|
|
exec autoreconf -f -i "$@"
|