diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-08-20 18:08:19 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-08-23 15:33:10 +0200 |
commit | e09422ff46a3a826ad1b58d915728933fa9d710b (patch) | |
tree | 9c17869c40d3b23274a6910cc4512d4da4999106 | |
parent | 488302e8c4e42338bdd94be536ab7996fb6fff6b (diff) | |
download | rules-cc-e09422ff46a3a826ad1b58d915728933fa9d710b.tar.gz |
transitive-component test: really use a main depending on a shared library
... by fixing a copy&paste error in the TARGETS file of the example.
-rw-r--r-- | tests/test_cases/deps/transitive-components/TARGETS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cases/deps/transitive-components/TARGETS b/tests/test_cases/deps/transitive-components/TARGETS index 969fbe0..347b94c 100644 --- a/tests/test_cases/deps/transitive-components/TARGETS +++ b/tests/test_cases/deps/transitive-components/TARGETS @@ -55,7 +55,7 @@ { "type": ["@", "rules", "CC", "binary"] , "name": ["main"] , "srcs": ["main.cpp"] - , "private-deps": ["foo"] + , "private-deps": ["shared-foo"] } , "installed-shared-main": { "type": ["@", "rules", "CC", "install-with-deps"] |