1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* make-dist: Skip some more generated files in test/.

This commit is contained in:
Glenn Morris 2017-06-12 13:53:38 -04:00
parent 1d1f30104c
commit 710ed38912

View file

@ -552,8 +552,11 @@ done
if [ "$with_tests" = "yes" ]; then
echo "Making links to 'test' and its subdirectories"
for f in `find test -type f ! -name '*.log' ! -name a.out \
! -path test/Makefile ! -path test/data/emacs-module/Makefile
! -name '*.so' ! -name '*.dll' ! -name '*.o'
`; do
case $f in
*/Makefile) [ -f $f.in ] && continue ;;
esac
ln $f $tempdir/$f
done
fi