Changeset 0922716


Ignore:
Timestamp:
May 12, 2023, 12:21:58 PM (17 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
7c2c37a
Parents:
8fa3b660
Message:

changed dist-hook rule to use curly braces to access shell vars where it should use them instead of parens

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile.am

    r8fa3b660 r0922716  
    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
     109
    109110
    110111avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa
Note: See TracChangeset for help on using the changeset viewer.