1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08: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 ln $f $tempdir/$f || exit
done done
echo "Making links to 'info'" if [ -d info ]; then # Skip in case we've built --without-makeinfo.
ln `find info -type f -print` ${tempdir}/info || exit echo "Making links to 'info'"
ln `find info -type f -print` ${tempdir}/info || exit
fi
echo "Making links to 'doc/emacs'" echo "Making links to 'doc/emacs'"
(cd doc/emacs && (cd doc/emacs &&