summaryrefslogtreecommitdiff
path: root/waterfox
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-05-18 13:26:00 -0400
committerB Stack <bgstack15@gmail.com>2020-05-18 13:26:00 -0400
commit7205599218c57672ad33be00dd0edfb9230c97e7 (patch)
tree0a208f89f1954bf78f3aae03b9864898b9e02e70 /waterfox
parentwf 2020.05 (diff)
downloadstackrpms-7205599218c57672ad33be00dd0edfb9230c97e7.tar.gz
stackrpms-7205599218c57672ad33be00dd0edfb9230c97e7.tar.bz2
stackrpms-7205599218c57672ad33be00dd0edfb9230c97e7.zip
add quotes to an %if string
Diffstat (limited to 'waterfox')
-rw-r--r--waterfox/waterfox.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/waterfox/waterfox.spec b/waterfox/waterfox.spec
index 6376eb7..280135a 100644
--- a/waterfox/waterfox.spec
+++ b/waterfox/waterfox.spec
@@ -114,7 +114,7 @@ ExcludeArch: armv7hl
%global sqlite_build_version %(pkg-config --silence-errors --modversion sqlite3 2>/dev/null || echo 65536)
%endif
-%if %{branch} == "classic"
+%if "%{branch}" == "classic"
%global channel Classic
%else
%global channel Current
bgstack15