Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2017-01-29 00:23:51 +0300
committerJanek Bevendorff <janek@jbev.net>2017-01-29 00:23:51 +0300
commitb7180893c6a1a36be71ff772ed44f49ed5221db0 (patch)
tree449ce817779a31ce786fec56a2c402c96ea701e9 /release-tool
parent96ca7a8cbcd55e4e9342e267a279ab47828dd584 (diff)
Fix check for Msys
Diffstat (limited to 'release-tool')
-rwxr-xr-xrelease-tool3
1 files changed, 1 insertions, 2 deletions
diff --git a/release-tool b/release-tool
index 7c2a432c9..ef842a66a 100755
--- a/release-tool
+++ b/release-tool
@@ -476,8 +476,7 @@ build() {
export CXX="$COMPILER"
if [ "" == "$DOCKER_IMAGE" ]; then
-
- if [ "$(uname -i)" == "Msys" ]; then
+ if [ "$(uname -o)" == "Msys" ]; then
logInfo "Configuring build..."
cmake -DCMAKE_BUILD_TYPE=Release -DWITH_TESTS=Off -G"MSYS Makefiles" \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" $CMAKE_OPTIONS "$SRC_DIR"