diff options
author | ngie <ngie@FreeBSD.org> | 2015-11-26 00:56:07 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-11-26 00:56:07 +0000 |
commit | e417a2afca4460ab6e2534391fbd3466072e4089 (patch) | |
tree | 9d4dd6c03afe2a6f9fc5b8a5481b44bbda22d369 /lib/libc | |
parent | c5d5acf3132a90fa196c3e33c69a11cca959281a (diff) | |
download | FreeBSD-src-e417a2afca4460ab6e2534391fbd3466072e4089.zip FreeBSD-src-e417a2afca4460ab6e2534391fbd3466072e4089.tar.gz |
MFC r291172:
Use __MAKE_SHELL instead of HOST_SHELL when generating aton_ether_subr.c
(HOST_SHELL is used in NetBSD)
This fixes permission denied issues when gen_ether_subr is not executable
Reported by: José Pérez <fbl@aoek.com>
Suggested by: bdrewery, sjg
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/tests/net/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/tests/net/Makefile b/lib/libc/tests/net/Makefile index cf08c43..a88f44f 100644 --- a/lib/libc/tests/net/Makefile +++ b/lib/libc/tests/net/Makefile @@ -30,7 +30,7 @@ LDADD.h_nsd_recurse+= -lpthread CLEANFILES+= aton_ether_subr.c aton_ether_subr.c: gen_ether_subr ${.CURDIR:H:H:H:H}/sys/net/if_ethersubr.c - ${HOST_SH} ${.ALLSRC} ${.TARGET} + ${__MAKE_SHELL} ${.ALLSRC} ${.TARGET} .include "../Makefile.netbsd-tests" |