mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Merge pull request #1063 from JulianGro/fedora-version-fix
Update make-rpm-server to remove `-` characters.
This commit is contained in:
commit
1216a52a70
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ fi
|
|||
# The regex below extracts the path from the VCPKG_INSTALL_ROOT variable. Said variable gets populated during the CMake step.
|
||||
VCPKG_INSTALL_ROOT=`grep VCPKG_INSTALL_ROOT $OVERTE/build/vcpkg.cmake | perl -ne 'm/set\(VCPKG_INSTALL_ROOT\s+\"(.*?)\"/; print $1'`
|
||||
|
||||
VERSION=${RPMVERSION}
|
||||
# Remove minus character from version numbers, because rpmtool doesn't allow them.
|
||||
VERSION=${RPMVERSION//-}
|
||||
|
||||
if [ "$OVERTE_USE_SYSTEM_QT" = "" ]; then
|
||||
SOFILES=`ls \
|
||||
|
|
Loading…
Reference in a new issue