Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: iffe: fix parallel tmp file handling (re: ced499a)
Already found the first problem when testing parallel build on a nice and fast system: the temp files of two or more iffe(1) feature testing invocations were overwriting each other as they were using the same file name. src/cmd/INIT/iffe.sh: - Delete convoluted and nonsensical AT&T logic for determing a temp file name. The current process ID, $$, was added and then removed again if the name got longer than a certain threshold, which could cause different iffe invocations to use the same temp file name. Instead, just use ./iffe.$$ and be done with it.
- Loading branch information