The following commit has been merged in the master branch:
commit 0bd55a02bb5707b1b8b26347d5cb6ad71765f622
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.
    
    Change-Id: Id561d7610f80b87b59c632801fa0a4b216feb42d
    Reviewed-on: https://gerrit.openafs.org/13419
    Tested-by: BuildBot <[email protected]>
    Reviewed-by: Benjamin Kaduk <[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