summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2020-05-03 20:57:41 -0400
committerAndrew Cady <d@jerkface.net>2021-03-13 10:46:55 -0500
commit5f8763c9e6564e89f62a273d1b0758f29f2f2ac9 (patch)
tree7f209b536b4c9088c4c5540cc3b9aec0cb6c4af4
parentd7151bb014a53d002219d1b92e26140597046176 (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