Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile.am

    r94672ba r4daf79f  
    1111## Created On       : Sun May 31 09:08:15 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Mon May  1 17:25:24 2023
    14 ## Update Count     : 145
     13## Last Modified On : Mon May  1 16:45:07 2023
     14## Update Count     : 144
    1515###############################################################################
    1616
     
    101101dist-hook:
    102102        echo "Gathering test files"
    103         for test_file in `$(TEST_PY) --list-dist`; do \
    104                 if test -f $(srcdir)/$$(test_file); then \
    105                         $(MKDIR_P) $$(dirname $(distdir)/$$(test_file)); \
    106                         cp -df $(srcdir)/$$(test_file) $(distdir)/$$(test_file); \
     103        for file in `$(TEST_PY) --list-dist`; do \
     104                if test -f $(srcdir)/$$(file); then \
     105                        $(MKDIR_P) $$(dirname $(distdir)/$$(file)); \
     106                        cp -df $(srcdir)/$$(file) $(distdir)/$$(file); \
    107107                fi; \
    108108        done
     
    116116#----------------------------------------------------------------------------------------------------------------
    117117
    118 all-local : # This name is important to automake and implies the default build target.
     118all-local :
    119119        @+$(TEST_PY) --debug=$(debug) --install=$(installed) --archive-errors=$(archiveerrors) $(concurrent) $(timeouts) $(ARCH) --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
    120120
Note: See TracChangeset for help on using the changeset viewer.