# HG changeset patch # User Rik # Date 1658880333 25200 # Node ID 839c0fb5d63c952c3f00c0d3c09cdc0eed4696fd # Parent 60f32b7455e31275e2abea28df8dbcc306246aa4 build: Fix typo in cset f125ddb46055. * test/file-encoding/module.mk: Fix name of temporary variable to "file_encoding_TEST_FILES" so that it doesn't collide with existing "pkg_TEST_FILES" in test/pkg/module.mk. diff -r 60f32b7455e3 -r 839c0fb5d63c test/file-encoding/module.mk --- a/test/file-encoding/module.mk Tue Jul 26 13:21:07 2022 -0700 +++ b/test/file-encoding/module.mk Tue Jul 26 17:05:33 2022 -0700 @@ -1,8 +1,8 @@ -pkg_TEST_FILES = \ +file_encoding_TEST_FILES = \ %reldir%/.oct-config \ %reldir%/file-encoding.tst \ %reldir%/test_CP1252.m \ %reldir%/CP1251/.oct-config \ %reldir%/CP1251/test_CP1251.m -TEST_FILES += $(pkg_TEST_FILES) +TEST_FILES += $(file_encoding_TEST_FILES)