aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-03-07 04:33:17 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-03-07 04:33:17 +0000
commit60647474d9924bf86bd1de0b765a41b412f44e97 (patch)
tree7556d46cee9115f998f1e37fa2e55e24c034a541 /usr.bin
parented8251f88870501e5da9a17de533fad0f73c92ea (diff)
downloadsrc-60647474d9924bf86bd1de0b765a41b412f44e97.tar.gz
src-60647474d9924bf86bd1de0b765a41b412f44e97.zip
Don't rely on dependency in Makefile.inc1 for strfile; make datfiles depend on strfile
In most cases strfile is built as part of build-tools, but in the event that someone cd'ed to the directory, tried to build from scratch, and had MK_GAMES=no previously, the build would fail in .../datfiles , trying to find strfile . Mark this directory tree "SUBDIR_PARALLEL" safe to help facilitate this, instead of shuffling around the SUBDIR entries (all of the other Makefiles will build standalone). MFC after: 1 week Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=314831
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/fortune/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.bin/fortune/Makefile b/usr.bin/fortune/Makefile
index b8b4ff1466f6..ed00d012cd37 100644
--- a/usr.bin/fortune/Makefile
+++ b/usr.bin/fortune/Makefile
@@ -1,5 +1,11 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
+#
+# $FreeBSD$
-SUBDIR= fortune strfile datfiles unstr
+SUBDIR= fortune strfile datfiles unstr
+
+SUBDIR_DEPEND_datfiles= strfile
+
+SUBDIR_PARALLEL=
.include <bsd.subdir.mk>