Found from a travis build failure - https://api.travis-ci.org/v3/job/613990109/log.txt The rules to regenerate util_expr_scan.c util_expr_parse.c util_expr_parse.h from util_expr_parse.y are not parallel-safe since "make -j2" will potentially run the rule multiple times in parallel, and the rule uses the outputs as intermediate files which are modified in-place. This could potentially be fixed by using unique filenames per invocation (e.g. with mktemp or similar) though since these files are almost never regenerated it is possibly not worth the effort.
To repro, e.g. $ cd server $ rm -f util_expr_parse.[ch] util_expr_scan.c $ make -j2 if the build works you're lucky, but you'll see bison, flex etc are invoked twice.