install.do: don't crash when the manpages fail to build.
This commit is contained in:
parent
8f9453a55d
commit
f5eabe61d2
1 changed files with 4 additions and 1 deletions
|
|
@ -15,7 +15,10 @@ echo "Installing to: $DESTDIR$PREFIX"
|
||||||
$INSTALL -d $MANDIR/man1 $DOCDIR $BINDIR $LIBDIR
|
$INSTALL -d $MANDIR/man1 $DOCDIR $BINDIR $LIBDIR
|
||||||
|
|
||||||
# docs
|
# docs
|
||||||
$INSTALL -m 0644 Documentation/*.1 $MANDIR/man1
|
for d in Documentation/*.1; do
|
||||||
|
[ "$d" = "Documentation/*.1" ] && continue
|
||||||
|
$INSTALL -m 0644 $d $MANDIR/man1
|
||||||
|
done
|
||||||
$INSTALL -m 0644 README.md $DOCDIR
|
$INSTALL -m 0644 README.md $DOCDIR
|
||||||
|
|
||||||
# .py files (precompiled to .pyc files for speed)
|
# .py files (precompiled to .pyc files for speed)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue