Skip to content

Commit

Permalink
Merge pull request #1063 from JulianGro/fedora-version-fix
Browse files Browse the repository at this point in the history
Update make-rpm-server to remove `-` characters.
  • Loading branch information
JulianGro authored Jul 6, 2024
2 parents 2dd7306 + ab878f8 commit 1216a52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg-scripts/make-rpm-server
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 1216a52

Please sign in to comment.