aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-01-27 19:10:41 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-02-01 12:06:55 +0100
commit4c91194611086916c833d61e28e2f5e689316e83 (patch)
treeb338025023370b019e7d766ecb66d792cc1eba77 /scripts
parentcc197d04fc36a6ee4219f20772a7b39dd976edfd (diff)
downloadrneovim-4c91194611086916c833d61e28e2f5e689316e83.tar.gz
rneovim-4c91194611086916c833d61e28e2f5e689316e83.tar.bz2
rneovim-4c91194611086916c833d61e28e2f5e689316e83.zip
build: various fixes
- Consistently use the variable CMAKE_BUILD_TYPE to select build type. - Remove broken `doc_html` target. - Remove swap files created by oldtest when cleaning. - Only rerun `lintdoc` if any documentation files has changed.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/genappimage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genappimage.sh b/scripts/genappimage.sh
index 0ad5e803e4..e8aac42a9c 100755
--- a/scripts/genappimage.sh
+++ b/scripts/genappimage.sh
@@ -26,7 +26,7 @@ APP_DIR="$APP.AppDir"
########################################################################
# Build and install nvim into the AppImage
-make CMAKE_BUILD_TYPE="${NVIM_BUILD_TYPE}"
+make CMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}"
cmake --install build --prefix="$APP_BUILD_DIR/${APP_DIR}/usr"
########################################################################