Commit bf5d3fa
committed
Makefile: follow symbolic links of *.out files
Currently, "make check" uses a find command to ensure that '*.out' files
do not have execute permission. However, when an .out file is a symbolic
link, it always has execute permission regardless of the true permission
of the linked file and the "make check" command fails. This is false-
alert.
To avoid the false-alert, add -L option to the find command so that it
follows symbolic links. With this, the execute permission check is done
not for the symbolic links but for the linked files.
Signed-off-by: Shin'ichiro Kawasaki <[email protected]>1 parent 93b3a68 commit bf5d3fa
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
0 commit comments