diff options
author | 2017-01-28 12:38:42 +0000 | |
---|---|---|
committer | 2017-01-28 12:38:42 +0000 | |
commit | 85edfc9401ba76c6c2097395d1eb32ada3cb098a (patch) | |
tree | 88c9d7d5c1e2afbb46551bdcaaec642dbdd87188 | |
parent | Introduce ieee80211_mira_probe_done() helper which resets probing state, (diff) | |
download | wireguard-openbsd-85edfc9401ba76c6c2097395d1eb32ada3cb098a.tar.xz wireguard-openbsd-85edfc9401ba76c6c2097395d1eb32ada3cb098a.zip |
Back out make(obj) hack: it doesn't solve the problem entirely and may
interfere with read-only src tree setups.
-rw-r--r-- | usr.sbin/unbound/Makefile.bsd-wrapper | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/unbound/Makefile.bsd-wrapper b/usr.sbin/unbound/Makefile.bsd-wrapper index 7d78880b8ae..0b5a41b5759 100644 --- a/usr.sbin/unbound/Makefile.bsd-wrapper +++ b/usr.sbin/unbound/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.14 2017/01/24 09:57:29 tb Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.15 2017/01/28 12:38:42 tb Exp $ .include <bsd.own.mk> @@ -90,16 +90,6 @@ clean cleandir: depend: # Nothing here so far... -# install-sh creates obj/util using 'install -d' without setting the mode -# explicitly. Make sure it has the right owner and permissions. -.if make(obj) -.END: - @umask ${WOBJUMASK}; \ - [[ `id -u` -eq 0 ]] && SETOWNER="chown -h ${BUILDUSER}" || SETOWNER=:; \ - mkdir -p util; \ - $$SETOWNER util; -.endif - tags: # Nothing here so far... |