diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-11-22 21:04:41 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-11-22 21:04:41 +0000 |
commit | b758900e6e062ebe70d5e28898dcf4dfbf40e768 (patch) | |
tree | d9176a7f06469635169eaf17b8b66438cc460810 | |
parent | 5c25821c9c6c3c6e6d9f439585ea31e088232f6b (diff) |
kill wasteful shells. +Typo
-rw-r--r-- | usr.sbin/afs/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/afs/Makefile b/usr.sbin/afs/Makefile index bb451c51379..a964310a7bd 100644 --- a/usr.sbin/afs/Makefile +++ b/usr.sbin/afs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2000/09/11 17:15:18 art Exp $ +# $OpenBSD: Makefile,v 1.3 2001/11/22 21:04:40 espie Exp $ # # This is hairy. libroken (originally libroken and libutil) has to be built @@ -11,7 +11,7 @@ # libs and without making a hairy Makefile.bsd-wrapper # # Anomalies: -# - Man pages are not built from the main source beacuse of differing +# - Man pages are not built from the main source because of differing # path names. # - config.h and arla-version.h have to be pre-built and put in src/include. # config.h contains macros for endianness, but they are only used in one @@ -31,8 +31,8 @@ SUBDIR += afsd fs vos pts ## libroken) and libroken used by gensysname in (libarla/Makefile.ko.inc) beforedepend: - (cd libroken && make depend && make) - (cd ydr && make depend && make) + cd libroken && make depend && exec make + cd ydr && make depend && exec make .include <bsd.dep.mk> .include <bsd.subdir.mk> |