summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-05-03 20:57:41 -0400
committerAndrew Cady <d@jerkface.net>2020-08-16 14:45:05 -0400
commit90f625718b590b1a83dde33409c53a6eec1845a9 (patch)
tree76f031c3b36f47986b9b10c1a72ad56bf0f2e478
parentbc097c28c1ea1ddf88c5401729cd32cf7969d7bf (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