summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-05-03 20:57:41 -0400
committerAndrew Cady <d@jerkface.net>2020-05-03 20:57:41 -0400
commit589e0ae4142652c0f73c8e9b3777fddcc9676e95 (patch)
treee844fd6b26071af93009faa53be601f8c59a0ad5
parent3734a550eba796593f32e5b201127ecc359f07a9 (diff)
use mk-build-deps instead of apt-get build-dep
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b37a867dd..b7fa8eadd 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ arch := $(shell dpkg-architecture -q DEB_HOST_ARCH)
6version := $(shell head -n1 debian/changelog | $(script)) 6version := $(shell head -n1 debian/changelog | $(script))
7 7
8build-stamp: 8build-stamp:
9 sudo apt-get build-dep openssh 9 mk-build-deps ./debian/control --install --root-cmd sudo --remove
10 dpkg-buildpackage -us -uc -nc 10 dpkg-buildpackage -us -uc -nc
11 touch $@ 11 touch $@
12 12