From 49edd1a6dc813494fbce9fc73e4782fd7f8e8f61 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 24 Sep 2018 16:42:14 +0100 Subject: [PATCH] Makefile: Don't use tilde in rpm versions The tilde is not a valid version character in RPM packages, according to the RPM source code. Change-type: patch Signed-off-by: Juan Cruz Viotti --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e9eb5a1..8f5e9b3e 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ endif APPLICATION_NAME_LOWERCASE = $(shell echo $(APPLICATION_NAME) | tr A-Z a-z) APPLICATION_VERSION_DEBIAN = $(shell echo $(APPLICATION_VERSION) | tr "-" "~") -APPLICATION_VERSION_REDHAT = $(shell echo $(APPLICATION_VERSION) | tr "-" "~") +APPLICATION_VERSION_REDHAT = $(APPLICATION_VERSION) # --------------------------------------------------------------------- # Release type