Skip to content
This repository was archived by the owner on Dec 3, 2025. It is now read-only.

Commit d2f50f3

Browse files
committed
Dont cache global options
1 parent 08e010c commit d2f50f3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

third_party/deps.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,7 @@ def GetBuildHash(self):
252252
if self.build_hash is None:
253253
import hashlib
254254

255-
global CMAKE_GLOBAL_ARGS
256-
data_str = "|".join(self.extra_args + CMAKE_GLOBAL_ARGS)
255+
data_str = "|".join(self.extra_args)
257256
self.build_hash = hashlib.md5(data_str.encode()).hexdigest()
258257
return self.build_hash
259258

0 commit comments

Comments
 (0)