OpenAFS Master Repository branch, master, updated. BP-openafs-stable-1_8_x-290-g0bd55a0
Gerrit Code Review
gerrit@openafs.org
Fri, 18 Jan 2019 07:56:46 -0500
The following commit has been merged in the master branch:
commit 0bd55a02bb5707b1b8b26347d5cb6ad71765f622
Author: Michael Meffie <mmeffie@sinenomine.net>
Date: Thu Dec 27 09:32:35 2018 -0500
build: declare test targets as phony
Modern versions `make` will not build the 'test' target since a
directory exists with the same name.
$ grep -C1 '^test:' Makefile
test:
cd test; $(MAKE)
$ make test
make: 'test' is up to date.
Declare these targets as .PHONY to force make to build the test programs
even when the 'test' directory is present. Also use '&&' to concatenate
commands instead ';' to avoid running the second command when the first
fails.
Change-Id: Id561d7610f80b87b59c632801fa0a4b216feb42d
Reviewed-on: https://gerrit.openafs.org/13419
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
src/auth/Makefile.in | 3 ++-
src/bozo/Makefile.in | 3 ++-
src/comerr/Makefile.in | 3 ++-
src/dir/Makefile.in | 3 ++-
src/libacl/Makefile.in | 3 ++-
src/log/Makefile.in | 3 ++-
src/util/Makefile.in | 3 ++-
src/venus/Makefile.in | 3 ++-
src/vol/Makefile.in | 3 ++-
9 files changed, 18 insertions(+), 9 deletions(-)
--
OpenAFS Master Repository