aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-03-06 16:59:35 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-03-06 16:59:35 -0800
commitcf175c97523f09b13db984801ba15e35978d1137 (patch)
treecec9f1661f3ef12a09f05cc3c0a748eafc129a6d /Makefile
parent271dd9e34445d09cdf12bb91de48bb0bfa7a1125 (diff)
downloadpandoc-cf175c97523f09b13db984801ba15e35978d1137.tar.gz
Avoid subprocess for docker run.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index aca6f2ee7..2c112d66d 100644
--- a/Makefile
+++ b/Makefile
@@ -81,7 +81,7 @@ checkdocs:
! grep -q -n -e "\t" MANUAL.txt changelog.md
debpkg: man/pandoc.1
- (docker run -v `pwd`:/mnt \
+ docker run -v `pwd`:/mnt \
-v `pwd`/linux/artifacts:/artifacts \
-e REVISION=$(REVISION) \
-w /mnt \
@@ -89,7 +89,7 @@ debpkg: man/pandoc.1
--rm \
$(DOCKERIMAGE) \
bash \
- /mnt/linux/make_artifacts.sh) 2>&1 > docker.log
+ /mnt/linux/make_artifacts.sh 2>&1 > docker.log
man/pandoc.1: MANUAL.txt man/pandoc.1.before man/pandoc.1.after
pandoc $< -f markdown -t man -s \