diff options
author | Elizabeth Myers <elizabeth@interlinked.me> | 2020-12-02 20:03:24 -0600 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-12-03 02:25:58 +0000 |
commit | fd8faa7e21994dee0a6d3d09abebb3004311408e (patch) | |
tree | c3b6d4b9cf97a5e8049dd9f678587d0d79e41a68 /src/modules/extra | |
parent | fe67c13ddf8f546bed95a9904679b3f32c708cd9 (diff) |
Fix default linker flags in libargon2
It's -largon2, not -llibargon2. I've experienced build failures due to this.
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_argon2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_argon2.cpp b/src/modules/extra/m_argon2.cpp index 9270f0f7a..50c678a52 100644 --- a/src/modules/extra/m_argon2.cpp +++ b/src/modules/extra/m_argon2.cpp @@ -18,7 +18,7 @@ /// $CompilerFlags: find_compiler_flags("libargon2" "") -/// $LinkerFlags: find_linker_flags("libargon2" "-llibargon2") +/// $LinkerFlags: find_linker_flags("libargon2" "-largon2") /// $PackageInfo: require_system("arch") argon2 pkgconf /// $PackageInfo: require_system("darwin") argon2 pkg-config |