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