Changeset 94672ba


Ignore:
Timestamp:
May 12, 2023, 8:56:08 AM (14 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
8fa3b660
Parents:
7b53bfd
Message:

changed variable name in makefile to try and avoid shell command with same name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile.am

    r7b53bfd r94672ba  
    101101dist-hook:
    102102        echo "Gathering test files"
    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); \
     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); \
    107107                fi; \
    108108        done
Note: See TracChangeset for help on using the changeset viewer.