diff options
-rw-r--r-- | rules/common.mk | 2 | ||||
-rw-r--r-- | rules/ips.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rules/common.mk b/rules/common.mk index 7dcee53..c0d1c6c 100644 --- a/rules/common.mk +++ b/rules/common.mk @@ -29,7 +29,7 @@ bits := 32 # Prepended to commands which require root privileges # May be overriden in /etc/cibs/cibs.conf to, for example, pfexec -root := sudo +root-cmd := sudo mach := $(shell uname -p) mach32 := diff --git a/rules/ips.mk b/rules/ips.mk index 845153f..36d76e2 100644 --- a/rules/ips.mk +++ b/rules/ips.mk @@ -149,7 +149,7 @@ check-ips-build-dep-stamp: # Install build dependencies: build-dep: - $(root) pkg install $(build-depends) + $(root-cmd) pkg install $(build-depends) .PHONY: publish build-dep pre-publish |