1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

* make-dist: Don't fail if building --without-makeinfo.

This commit is contained in:
Noam Postavsky 2018-04-30 15:49:04 -04:00
parent cbb9c78de0
commit 7b1026cbf4

View File

@ -596,8 +596,10 @@ for f in `find etc -type f`; do
ln $f $tempdir/$f || exit
done
echo "Making links to 'info'"
ln `find info -type f -print` ${tempdir}/info || exit
if [ -d info ]; then # Skip in case we've built --without-makeinfo.
echo "Making links to 'info'"
ln `find info -type f -print` ${tempdir}/info || exit
fi
echo "Making links to 'doc/emacs'"
(cd doc/emacs &&