From f226d1b180394bc69b7d575128ec18adece1ba3e Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Sun, 28 Jun 2020 22:06:09 -0300 Subject: [PATCH] Fix typo in static sqlite external target (#1184) This could cause sqlite3 to not get built in time (found via lokinet, which copied this, where this issue showed up). --- cmake/StaticBuild.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/StaticBuild.cmake b/cmake/StaticBuild.cmake index c524a267f..de7302903 100644 --- a/cmake/StaticBuild.cmake +++ b/cmake/StaticBuild.cmake @@ -315,7 +315,7 @@ set(Boost_VERSION ${BOOST_VERSION}) build_external(sqlite3) -add_static_target(sqlite3 sqlite_external libsqlite3.a) +add_static_target(sqlite3 sqlite3_external libsqlite3.a)