From cf175c97523f09b13db984801ba15e35978d1137 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Sat, 6 Mar 2021 16:59:35 -0800
Subject: [PATCH] Avoid subprocess for docker run.

---
 Makefile | 4 ++--
 1 file 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 \