diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2001-06-05 10:06:21 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2001-06-05 10:06:21 +0000 |
commit | abf0bac6cb08f1a297c47d3bd3dac853690d5db8 (patch) | |
tree | e968ee46b13e635148cdb731f8c338290a839db8 /kerberosV | |
parent | 93e55c5cc0e6ec26565a7ca210edb3902894ed61 (diff) |
Don't spawn unecessary subshells.
From espie.
Diffstat (limited to 'kerberosV')
-rw-r--r-- | kerberosV/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kerberosV/Makefile b/kerberosV/Makefile index 15bd0b25707..478a9f8afbc 100644 --- a/kerberosV/Makefile +++ b/kerberosV/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.2 2001/05/25 12:00:47 jakob Exp $ +# $OpenBSD: Makefile,v 1.3 2001/06/05 10:06:20 hin Exp $ SUBDIR = usr.bin/asn1_compile lib usr.bin libexec usr.sbin build: - ( cd lib/roken && ${MAKE} ) - ( cd usr.bin/asn1_compile && ${MAKE} && ${SUDO} ${MAKE} install ) + cd lib/roken && exec ${MAKE} + cd usr.bin/asn1_compile && ${MAKE} && exec ${SUDO} ${MAKE} install ${SUDO} ${MAKE} includes ${MAKE} depend - ( cd lib && ${MAKE} && ${SUDO} ${MAKE} install ) + cd lib && ${MAKE} && exec ${SUDO} ${MAKE} install ${MAKE} ${SUDO} ${MAKE} install |