mirror of
https://src.fedoraproject.org/rpms/nodejs18.git
synced 2024-11-24 17:44:23 +00:00
Fix incorrect comparison
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
parent
24df70972b
commit
5ec966f5e9
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
# This is used by both the nodejs package and the npm subpackage thar
|
# This is used by both the nodejs package and the npm subpackage thar
|
||||||
# has a separate version - the name is special so that rpmdev-bumpspec
|
# has a separate version - the name is special so that rpmdev-bumpspec
|
||||||
# will bump this rather than adding .1 to the end.
|
# will bump this rather than adding .1 to the end.
|
||||||
%global baserelease 6
|
%global baserelease 7
|
||||||
|
|
||||||
%{?!_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
%{?!_pkgdocdir:%global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
|
|
||||||
%global sys_icu_version %(/usr/bin/icu-config --version)
|
%global sys_icu_version %(/usr/bin/icu-config --version)
|
||||||
|
|
||||||
%if sys_icu_version >= icu_version
|
%if "%{sys_icu_version}" >= "%{icu_version}"
|
||||||
%global bundled_icu 0
|
%global bundled_icu 0
|
||||||
%global icu_flag system-icu
|
%global icu_flag system-icu
|
||||||
%else
|
%else
|
||||||
|
|
Loading…
Reference in a new issue