diff options
author | Alexey Neyman <stilor@att.net> | 2020-03-17 12:43:57 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2020-03-17 12:44:44 -0700 |
commit | 682f9aac7ba9e98c88c39738401f6371d074157c (patch) | |
tree | 230072173fef3e531e1ddb60348219fabd5657fc /maintainer | |
parent | c969be1880f99b6da4d98afd7bda641b7868a717 (diff) | |
download | crosstool-ng-682f9aac7ba9e98c88c39738401f6371d074157c.tar.gz crosstool-ng-682f9aac7ba9e98c88c39738401f6371d074157c.tar.bz2 crosstool-ng-682f9aac7ba9e98c88c39738401f6371d074157c.zip |
Make rpmbuild happy with our unreleased versions
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'maintainer')
-rwxr-xr-x | maintainer/git-version-gen | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/maintainer/git-version-gen b/maintainer/git-version-gen index 4a6d3312..0ca6bd34 100755 --- a/maintainer/git-version-gen +++ b/maintainer/git-version-gen @@ -215,6 +215,10 @@ if test "x$v_from_git" != x; then esac fi +# Replace any dashes with underscores in the resulting version, to keep +# rpmbuild happy. See https://github.com/semver/semver/issues/145. +v=`echo "$v" | sed 's/-/_/g'` + # Omit the trailing newline, so that m4_esyscmd can use the result directly. printf %s "$v" |