The following commit has been merged in the openafs-stable-1_8_x branch:
commit a083a277a7f2407c2378b634c37a6fb13770baf1
Author: Michael Meffie <[email protected]>
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 <[email protected]>
    Reviewed-by: Benjamin Kaduk <[email protected]>
    (cherry picked from commit 0bd55a02bb5707b1b8b26347d5cb6ad71765f622)
    
    Change-Id: I4bc8c09720a19658afbab733ea74332083bb29f4
    Reviewed-on: https://gerrit.openafs.org/14909
    Reviewed-by: Cheyenne Wills <[email protected]>
    Reviewed-by: Michael Meffie <[email protected]>
    Tested-by: BuildBot <[email protected]>
    Reviewed-by: Mark Vitale <[email protected]>
    Reviewed-by: Andrew Deason <[email protected]>
    Reviewed-by: Marcio Brito Barbosa <[email protected]>
    Reviewed-by: Stephan Wiesand <[email protected]>

 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
_______________________________________________
OpenAFS-cvs mailing list
[email protected]
https://lists.openafs.org/mailman/listinfo/openafs-cvs

Reply via email to