mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
This commit is contained in:
parent
ed8251f888
commit
60647474d9
1 changed files with 7 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue