OpenAFS Master Repository branch, openafs-stable-1_8_x, updated. openafs-stable-1_8_8_1-13-ga083a27
Gerrit Code Review
gerrit@openafs.org
Thu, 4 Aug 2022 11:33:41 -0400
The following commit has been merged in the openafs-stable-1_8_x branch:
commit a083a277a7f2407c2378b634c37a6fb13770baf1
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.
Reviewed-on: https://gerrit.openafs.org/13419
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
(cherry picked from commit 0bd55a02bb5707b1b8b26347d5cb6ad71765f622)
Change-Id: I4bc8c09720a19658afbab733ea74332083bb29f4
Reviewed-on: https://gerrit.openafs.org/14909
Reviewed-by: Cheyenne Wills <cwills@sinenomine.net>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Mark Vitale <mvitale@sinenomine.net>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Marcio Brito Barbosa <mbarbosa@sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
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