[neon/kde/breeze-plymouth/Neon/release] debian: fix the conditional

Carlos De Maine null at kde.org
Thu Sep 11 11:17:24 BST 2025


Git commit 8318570643468fbaff85afcf4013259947c84eb9 by Carlos De Maine.
Committed on 11/09/2025 at 10:17.
Pushed by carlosdem into branch 'Neon/release'.

fix the conditional

M  +2    -2    debian/rules

https://invent.kde.org/neon/kde/breeze-plymouth/-/commit/8318570643468fbaff85afcf4013259947c84eb9

diff --git a/debian/rules b/debian/rules
index 2111ac7..845c21a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,10 +10,10 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,-Bsymbolic-functions -Wl,--as-needed
 UNAME_VERSION := $(shell sed -n "/^set(PROJECT_VERSION .*)$$/ {s/[^0-9.]//g;p}" CMakeLists.txt)
 
 UNAME_TYPE := $(shell uname_type="$(TYPE)"; echo "$${uname_type}")
-ifeq ($(UNAME_TYPE) = "release")
+ifeq $(UNAME_TYPE) = "release"
 UNAME_TYPE := "user"
 endif
-ifeq ($(UNAME_TYPE) = "stable")
+ifeq $(UNAME_TYPE) = "stable"
 UNAME_TYPE := "testing"
 endif
 


More information about the Neon-commits mailing list