From 2a5c4333ed94acad2786f3e31c31648c6dd0e7a0 Mon Sep 17 00:00:00 2001 Message-Id: <2a5c4333ed94acad2786f3e31c31648c6dd0e7a0.1717804421.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 16 Aug 2017 02:59:25 +0100 Subject: [PATCH] bin/mdw-sbuild: Don't require build-deps to make the source package. Organization: Straylight/Edgeware From: Mark Wooding --- bin/mdw-sbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mdw-sbuild b/bin/mdw-sbuild index 2fd31ff..f9ceee5 100755 --- a/bin/mdw-sbuild +++ b/bin/mdw-sbuild @@ -88,7 +88,7 @@ case ${ver+t} in t) ;; *) fail "can't figure out the package version" ;; esac ## Build a Debian source package. Don't sign anything yet. That will happen ## at the end, all in one go. -dpkg-buildpackage -S -uc -us +dpkg-buildpackage -S -uc -us -d cd .. dsc=${pkg}_${ver}.dsc [ -f "$dsc" ] || fail "where is my \`.dsc' file?" -- [mdw]