mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
configure: replace multiple redirects with redirected block
This belatedly implements Tomi's suggestion from id:m25zaukv6u.fsf@guru.guru-group.fi
This commit is contained in:
parent
49d630d0f3
commit
7aaf6cbe9a
1 changed files with 10 additions and 10 deletions
20
configure
vendored
20
configure
vendored
|
@ -1551,16 +1551,16 @@ NOTMUCH_HAVE_PYTHON3_PYTEST=${have_python3_pytest}
|
|||
PLATFORM=${platform}
|
||||
EOF
|
||||
|
||||
cat > sphinx.config <<EOF
|
||||
# Generated by configure, run from doc/conf.py
|
||||
EOF
|
||||
if [ $WITH_EMACS = "1" ]; then
|
||||
printf "tags.add('WITH_EMACS')\n" >> sphinx.config
|
||||
fi
|
||||
if [ $WITH_PYTHON_DOCS = "1" ]; then
|
||||
printf "tags.add('WITH_PYTHON')\n" >> sphinx.config
|
||||
fi
|
||||
printf "rsti_dir = '%s'\n" $(realpath emacs) >> sphinx.config
|
||||
{
|
||||
echo "# Generated by configure, run from doc/conf.py"
|
||||
if [ $WITH_EMACS = "1" ]; then
|
||||
echo "tags.add('WITH_EMACS')"
|
||||
fi
|
||||
if [ $WITH_PYTHON_DOCS = "1" ]; then
|
||||
echo "tags.add('WITH_PYTHON')"
|
||||
fi
|
||||
printf "rsti_dir = '%s'\n" $(realpath emacs)
|
||||
} > sphinx.config
|
||||
|
||||
# Finally, after everything configured, inform the user how to continue.
|
||||
cat <<EOF
|
||||
|
|
Loading…
Reference in a new issue