summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6934d38..c9c09d4 100644
--- a/Makefile
+++ b/Makefile
@@ -22,10 +22,10 @@ install-stack:
22stack: 22stack:
23 @command -v stack >/dev/null || make install-stack 23 @command -v stack >/dev/null || make install-stack
24 24
25build-deps: build-deps-stamp 25build-deps: build-deps-stamp | _build
26build-deps-stamp: build-deps.control 26build-deps-stamp: build-deps.control
27 sudo apt --no-upgrade install equivs libdpkg-perl 27 sudo apt --no-upgrade install equivs libdpkg-perl
28 sudo ./src/mk-build-deps --root-cmd sudo build-deps.control --install --remove 28 (set -ex; w=$$PWD; cd $$TMP; mk-build-deps --root-cmd sudo "$$w"/build-deps.control --install --remove)
29 touch $@ 29 touch $@
30 30
31_build/dynmenu: src/dynmenu.cpp | build-deps 31_build/dynmenu: src/dynmenu.cpp | build-deps