We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-
1 parent 3ddd205 commit ab878f8Copy full SHA for ab878f8
pkg-scripts/make-rpm-server
@@ -13,7 +13,8 @@ fi
13
# The regex below extracts the path from the VCPKG_INSTALL_ROOT variable. Said variable gets populated during the CMake step.
14
VCPKG_INSTALL_ROOT=`grep VCPKG_INSTALL_ROOT $OVERTE/build/vcpkg.cmake | perl -ne 'm/set\(VCPKG_INSTALL_ROOT\s+\"(.*?)\"/; print $1'`
15
16
-VERSION=${RPMVERSION}
+# Remove minus character from version numbers, because rpmtool doesn't allow them.
17
+VERSION=${RPMVERSION//-}
18
19
if [ "$OVERTE_USE_SYSTEM_QT" = "" ]; then
20
SOFILES=`ls \
0 commit comments