diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2008-01-11 10:16:41 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2008-01-11 10:16:41 +0000 |
commit | 1d45b00dbad6f071a859df121c3940a8e740390d (patch) | |
tree | 09f8a46437c751939e0e7697221a9af8e97a8a31 /distrib/Makefile | |
parent | 95dac7edd60246f4cbfef70790e08f46c8031c60 (diff) |
cleanup: make -> ${MAKE} consistenly.
zap extra subshells.
okay miod@
Diffstat (limited to 'distrib/Makefile')
-rw-r--r-- | distrib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/Makefile b/distrib/Makefile index b07cdd2e907..3d259e01381 100644 --- a/distrib/Makefile +++ b/distrib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.32 2007/08/01 21:31:06 deraadt Exp $ +# $OpenBSD: Makefile,v 1.33 2008/01/11 10:16:40 espie Exp $ SUBDIR= special notes @@ -17,7 +17,7 @@ SUBDIR+=crunch #all: crunch-tools _SUBDIRUSE crunch-tools: - (cd $(.CURDIR)/crunch; $(MAKE) obj; \ - $(MAKE) depend && ${MAKE} && ${SUDO} ${MAKE} DESTDIR= install) + cd $(.CURDIR)/crunch; $(MAKE) obj; \ + $(MAKE) depend && ${MAKE} && ${SUDO} ${MAKE} DESTDIR= install .include <bsd.subdir.mk> |