Skip to content

Commit 31bf4e3

Browse files
committed
fix == error
1 parent 4e55489 commit 31bf4e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gen.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ int generate_cmake(const char *path) {
182182
} else if (first_arg == "tag") {
183183
first_arg = "GIT_TAG";
184184
} else if (first_arg == "svn") {
185-
first_arg == "SVN_REPOSITORY";
185+
first_arg = "SVN_REPOSITORY";
186186
} else if (first_arg == "rev") {
187-
first_arg == "SVN_REVISION";
187+
first_arg = "SVN_REVISION";
188188
} else if (first_arg == "url") {
189189
first_arg = "URL";
190190
} else if (first_arg == "hash") {

0 commit comments

Comments
 (0)