summaryrefslogtreecommitdiff
path: root/configure.sh
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-09-30 13:07:38 -0700
committerGitHub <noreply@github.com>2021-09-30 20:07:38 +0000
commit1582914d275314eb707aa21d952fd22f502bc963 (patch)
treed7cb98ab7b1475f21b121d22ecb5a4c394f05e81 /configure.sh
parent31c108fadfd76419b57d89dae4ca5e8b4487c4af (diff)
configure: Fix --static flag. (#7280)
Diffstat (limited to 'configure.sh')
-rwxr-xr-xconfigure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.sh b/configure.sh
index 4fc274612..a8bf19b79 100755
--- a/configure.sh
+++ b/configure.sh
@@ -357,7 +357,7 @@ fi
[ $muzzle != default ] \
&& cmake_opts="$cmake_opts -DENABLE_MUZZLE=$muzzle"
[ $static_library != default ] \
- && cmake_opts="$cmake_opts -ENABLE_STATIC_LIBRARY=$static_library"
+ && cmake_opts="$cmake_opts -DENABLE_STATIC_LIBRARY=$static_library"
[ $static_binary != default ] \
&& cmake_opts="$cmake_opts -DENABLE_STATIC_BINARY=$static_binary"
[ $statistics != default ] \
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback