projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbb9c78
)
* make-dist: Don't fail if building --without-makeinfo.
author
Noam Postavsky
<npostavs@gmail.com>
Mon, 30 Apr 2018 19:49:04 +0000
(15:49 -0400)
committer
Noam Postavsky
<npostavs@gmail.com>
Fri, 4 May 2018 11:43:51 +0000
(07:43 -0400)
make-dist
patch
|
blob
|
history
diff --git
a/make-dist
b/make-dist
index 4f420a9748961114ac1fb61e7eacb254fdca1a3d..aba5c43c52f6bc43beba5ba2fa5924f6f03c4eec 100755
(executable)
--- a/
make-dist
+++ b/
make-dist
@@
-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 &&