summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorlhchavez <[email protected]>2020-06-20 12:39:03 -0700
committerGitHub <[email protected]>2020-06-20 12:39:03 -0700
commit1c9bef0f9f56100ae715fdd130beed6abfa9e475 (patch)
treefbb55e9aa549ea9e9bd25f44277c17a1adeec8b5 /script
parent33dac3d46077ef71ed97ba232a0a53b793f1ca7e (diff)
Remove a couple of now-unnecessary CMake defines (#619)
This change removes the `LIB_INSTALL_DIR` and `INCLUDE_INSTALL_DIR` from the `script/build-libgit2.sh` script, since they are now unneeded and just print a warning if they are used.
Diffstat (limited to 'script')
-rwxr-xr-xscript/build-libgit2.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/script/build-libgit2.sh b/script/build-libgit2.sh
index 839b8f3..acbc84a 100755
--- a/script/build-libgit2.sh
+++ b/script/build-libgit2.sh
@@ -41,8 +41,6 @@ cmake -DTHREADSAFE=ON \
-DCMAKE_C_FLAGS=-fPIC \
-DCMAKE_BUILD_TYPE="RelWithDebInfo" \
-DCMAKE_INSTALL_PREFIX="${BUILD_PATH}/install" \
- -DINCLUDE_INSTALL_DIR="${BUILD_PATH}/install/include" \
- -DLIB_INSTALL_DIR="${BUILD_PATH}/install/lib" \
"${VENDORED_PATH}" &&
exec cmake --build . --target install