svn commit: r426246 - head/www/rejik
John Marino
marino at FreeBSD.org
Wed Nov 16 15:55:06 UTC 2016
Author: marino
Date: Wed Nov 16 15:55:04 2016
New Revision: 426246
URL: https://svnweb.freebsd.org/changeset/ports/426246
Log:
www/rejik is not jobs safe.
Another example of an "all" target requiring the "clean" target which
causes a race where object files can be deleted after they are built.
It's easy to fix but indicative the author fundamentally doesn't
understand make dependencies. Dumb.
Modified:
head/www/rejik/Makefile
Modified: head/www/rejik/Makefile
==============================================================================
--- head/www/rejik/Makefile Wed Nov 16 15:48:30 2016 (r426245)
+++ head/www/rejik/Makefile Wed Nov 16 15:55:04 2016 (r426246)
@@ -23,4 +23,6 @@ MAKE_ARGS= CC=${CC} INSTALL_PATH=${PREFI
USERS= squid
GROUPS= squid
+MAKE_JOBS_UNSAFE= yes
+
.include <bsd.port.mk>
More information about the svn-ports-all
mailing list