1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-12 23:02:59 +03:00

configure: detect "rpm" instead of "rpmbuild"

This commit is contained in:
Ilya Shipitsin 2018-08-18 00:48:27 +05:00
parent 1062d600b4
commit a5c63a8ed7

6
configure vendored
View File

@ -35,11 +35,11 @@ if [ -z ${OPENSSL_ROOT_DIR} ]; then
fi
fi
if [ -x "$(command -v rpmbuild)" ]; then
echo "'rpmbuild' executable found, CPack will generate RPM packages."
if [ -x "$(command -v rpm)" ]; then
echo "'rpm' executable found, CPack will generate RPM packages."
CMAKE_FLAGS="-DCPACK_GENERATOR='RPM' ${CMAKE_FLAGS}"
else
echo "'rpmbuild' executable not found, CPack will generate DEB packages."
echo "'rpm' executable not found, CPack will generate DEB packages."
CMAKE_FLAGS="-DCPACK_GENERATOR='DEB' ${CMAKE_FLAGS}"
fi