diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-12-07 14:27:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-12-07 14:27:03 +0200 |
commit | 60aeb91521e777d17b685824551680294e0317bf (patch) | |
tree | 07320b46f9249e29e2bd2ee108f65f0e9555b174 /libbuild2/cc | |
parent | 3ac9b0bc939bb28d4c0f68fc186572ccde8a9956 (diff) |
Use effective rather than recall path for cache key
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/msvc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/msvc.cxx b/libbuild2/cc/msvc.cxx index 9139891..69c939a 100644 --- a/libbuild2/cc/msvc.cxx +++ b/libbuild2/cc/msvc.cxx @@ -398,7 +398,7 @@ namespace build2 string key; { sha256 cs; - cs.append (ld.recall_string ()); + cs.append (ld.effect_string ()); cs.append (l.string ()); key = cs.string (); |