projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b34e3a9
)
Use string comparison instead of numeric comparison when comparing digests.
author
Ted Kremenek
<kremenek@apple.com>
Tue, 21 Jul 2009 17:41:55 +0000
(17:41 +0000)
committer
Ted Kremenek
<kremenek@apple.com>
Tue, 21 Jul 2009 17:41:55 +0000
(17:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76594
91177308
-0d34-0410-b5e6-
96231b3b80d8
utils/UpdateCMakeLists.pl
patch
|
blob
|
history
diff --git
a/utils/UpdateCMakeLists.pl
b/utils/UpdateCMakeLists.pl
index 94e69ce2556cae9073c2ea9615e3c829534cb8ef..3aa2f8891e2ec8857fd51fe31535bd443db2f0f0 100755
(executable)
--- a/
utils/UpdateCMakeLists.pl
+++ b/
utils/UpdateCMakeLists.pl
@@
-96,7
+96,7
@@
sub UpdateCMake {
my $digestB = Digest::MD5->new->addfile(*FILE)->hexdigest;
close(FILE);
- if ($digestA
!=
$digestB) {
+ if ($digestA
ne
$digestB) {
move($cmakeListNew, $cmakeList);
return 1;
}