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:
parent
cbb9c78de0
commit
7b1026cbf4
@ -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 &&
|
||||
|
Loading…
Reference in New Issue
Block a user