diff options
author | marino <marino@FreeBSD.org> | 2015-07-14 19:15:24 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-07-14 19:15:24 +0800 |
commit | 316c5c85bf2ef3c935f8aabd1df076354e4188d9 (patch) | |
tree | 0ac60286ea66224440bc6ae65016a7123c5a4496 /sysutils | |
parent | dc19e83dc7fc964f8a0edf014393c95c7607a574 (diff) | |
download | freebsd-ports-gnome-316c5c85bf2ef3c935f8aabd1df076354e4188d9.tar.gz freebsd-ports-gnome-316c5c85bf2ef3c935f8aabd1df076354e4188d9.tar.zst freebsd-ports-gnome-316c5c85bf2ef3c935f8aabd1df076354e4188d9.zip |
sysutils dvtm is not jobs safe
This has failed on me twice so far in a multi-job build. In the last
case, the dvtm program was being constructed before the dvtm.o object
was built, so it's a problem with the makefile.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/dvtm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysutils/dvtm/Makefile b/sysutils/dvtm/Makefile index 90f6e9b6ea6c..6064ae8397b8 100644 --- a/sysutils/dvtm/Makefile +++ b/sysutils/dvtm/Makefile @@ -11,6 +11,8 @@ COMMENT= Tiling window management for the console PLIST_FILES= bin/dvtm bin/dvtm-status \ man/man1/dvtm.1.gz +MAKE_JOBS_UNSAFE= yes + pre-everything:: @${ECHO_MSG} "You can build dvtm with your own config.h using the DVTM_CONF knob:" @${ECHO_MSG} "make DVTM_CONF=/path/to/dvtm/config.h install clean" |