Remove a couple of now-unnecessary CMake defines

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.
This commit is contained in:
lhchavez 2020-06-20 12:18:22 -07:00
parent 33dac3d460
commit ebcdca176e
1 changed files with 0 additions and 2 deletions

View File

@ -41,8 +41,6 @@ cmake -DTHREADSAFE=ON \
-DCMAKE_C_FLAGS=-fPIC \ -DCMAKE_C_FLAGS=-fPIC \
-DCMAKE_BUILD_TYPE="RelWithDebInfo" \ -DCMAKE_BUILD_TYPE="RelWithDebInfo" \
-DCMAKE_INSTALL_PREFIX="${BUILD_PATH}/install" \ -DCMAKE_INSTALL_PREFIX="${BUILD_PATH}/install" \
-DINCLUDE_INSTALL_DIR="${BUILD_PATH}/install/include" \
-DLIB_INSTALL_DIR="${BUILD_PATH}/install/lib" \
"${VENDORED_PATH}" && "${VENDORED_PATH}" &&
exec cmake --build . --target install exec cmake --build . --target install