summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2019-03-29 00:07:49 +0300
committerdartraiden <wowemuh@gmail.com>2019-03-29 00:07:49 +0300
commitd53931e2e088c5b7a0215b0d1249174c899bd47f (patch)
tree8c800fdfc5a896358d394070b3a99f9112196c0c
parent61ca3a9d376999eff338cb6d640b60b53b3e5776 (diff)
lpgen.js: we need to exclude only Cryptlib
-rw-r--r--tools/lpgen/lpgen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lpgen/lpgen.js b/tools/lpgen/lpgen.js
index a86d82b2d2..2c9443c5b1 100644
--- a/tools/lpgen/lpgen.js
+++ b/tools/lpgen/lpgen.js
@@ -121,7 +121,7 @@ while (!sln_stream.AtEndOfStream) {
// if exist sln_project_regexp, add to array, adding leading path to "trunk"
if (sln_project_regexp) {
//RegExp for unneeded modules, such as crypting library, zlib.dll etc.
- var unneeded_modules = /(libjson|Zlib|EkHtml|Libgcrypt|libotr|Cryptlib|pu_stub|libcurl|glib|Pcre16|liblua|winapi|json|libsignal|hunspell|ffi|m_popup|m_variables|libsodium|libtox|pthreads|sqlite3)/i;
+ var unneeded_modules = /(Cryptlib)/i;
// Now check for unneeded modules NOT passed (module name are in sln_project_regexp[1]
if (!unneeded_modules.test(sln_project_regexp[1])) {
//no, this is not unneeded module, put path to array. Trunk path + path to file in sln_project_regexp[2]