diff options
author | 2017-02-26 23:20:09 +0000 | |
---|---|---|
committer | 2017-02-26 23:20:09 +0000 | |
commit | ea3264072ff52b2458191b12bd9df04d93855460 (patch) | |
tree | 69310acb4d3910003ed6d2089f25350b63c968c4 | |
parent | Our certbegin/certend is always PIC, so remove the non-PIC MD_SECT_CALL_FUNC() (diff) | |
download | wireguard-openbsd-ea3264072ff52b2458191b12bd9df04d93855460.tar.xz wireguard-openbsd-ea3264072ff52b2458191b12bd9df04d93855460.zip |
Use mkdir -p instead of install -d to create the obj/util directory.
The latter defaults to 755, which doesn't play nicely with BUILDUSER.
Problem reported by jmc and Jan Stary; tested by myself and jmc.
ok ajacoutot
-rw-r--r-- | usr.sbin/unbound/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/unbound/Makefile.in b/usr.sbin/unbound/Makefile.in index 3c2de971cb9..d38254116f9 100644 --- a/usr.sbin/unbound/Makefile.in +++ b/usr.sbin/unbound/Makefile.in @@ -408,7 +408,7 @@ _unbound.la: libunbound_wrap.lo libunbound.la util/config_file.c: util/configparser.h util/configlexer.c: $(srcdir)/util/configlexer.lex util/configparser.h - @-if test ! -d util; then $(INSTALL) -d util; fi + @-if test ! -d util; then mkdir -p util; fi if test "$(LEX)" != ":"; then \ echo "#include \"config.h\"" > $@ ;\ echo "#include \"util/configyyrename.h\"" >> $@ ;\ @@ -416,7 +416,7 @@ util/configlexer.c: $(srcdir)/util/configlexer.lex util/configparser.h fi util/configparser.c util/configparser.h: $(srcdir)/util/configparser.y - @-if test ! -d util; then $(INSTALL) -d util; fi + @-if test ! -d util; then mkdir -p util; fi $(YACC) -d -o util/configparser.c $(srcdir)/util/configparser.y clean: |