make regression -- -q doesn't work?

Ryan Stone rysto32 at gmail.com
Fri Feb 13 19:40:17 UTC 2015


On 10.1-RELEASE, make -q doesn't seem to work anymore:

[rstone at wtllab-bsd10-build-64 rstone]cat Makefile

foo: bar
        cp bar foo

bar:
        touch bar

clean:
        rm -f foo bar

[rstone at wtllab-bsd10-build-64 rstone]make -q foo; echo $?
1
[rstone at wtllab-bsd10-build-64 rstone]make foo
touch bar
cp bar foo
[rstone at wtllab-bsd10-build-64 rstone]make -q foo; echo $?
`foo' is up to date.
1
[rstone at wtllab-bsd10-build-64 rstone]make foo
`foo' is up to date.
[rstone at wtllab-bsd10-build-64 rstone]echo $?
0


This worked correctly in 8.1-RELEASE.  I suspect that this is a
bmake-induced regression?


More information about the freebsd-current mailing list