diff options
| -rwxr-xr-x | make-dist | 6 |
1 files changed, 4 insertions, 2 deletions
| @@ -596,8 +596,10 @@ for f in `find etc -type f`; do | |||
| 596 | ln $f $tempdir/$f || exit | 596 | ln $f $tempdir/$f || exit |
| 597 | done | 597 | done |
| 598 | 598 | ||
| 599 | echo "Making links to 'info'" | 599 | if [ -d info ]; then # Skip in case we've built --without-makeinfo. |
| 600 | ln `find info -type f -print` ${tempdir}/info || exit | 600 | echo "Making links to 'info'" |
| 601 | ln `find info -type f -print` ${tempdir}/info || exit | ||
| 602 | fi | ||
| 601 | 603 | ||
| 602 | echo "Making links to 'doc/emacs'" | 604 | echo "Making links to 'doc/emacs'" |
| 603 | (cd doc/emacs && | 605 | (cd doc/emacs && |