Skip to content

Commit

Permalink
Per #1355, tweak met/scripts/Makefile to NOT ignore the ENABLE_PYTHON…
Browse files Browse the repository at this point in the history
… configuration option when constructing the list of tests.
  • Loading branch information
John Halley Gotway committed Dec 3, 2020
1 parent 2f1fa6f commit 244fa87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met/scripts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export TEST_OUT_DIR
##


TESTS := $(shell grep "define ENABLE_" ../config.h | cut -d" " -f2 | cut -b8- | tr A-Z a-z)
TESTS := $(shell grep "define ENABLE_" ../config.h | grep -v "ENABLE_PYTHON" | cut -d" " -f2 | cut -b8- | tr A-Z a-z)


########################################################################
Expand Down

0 comments on commit 244fa87

Please sign in to comment.