Remove superfluous backslashes that cause two alternative commands to be combined

Related: RHEL-126022
This commit is contained in:
Andrew Hughes 2025-11-12 01:05:18 +00:00
parent 29fb6ffa53
commit 381fa9007f

View File

@ -535,7 +535,7 @@ alternatives --install %{_bindir}/java java %{jrebindir -- %{?1}}/java %{priorit
alternatives --add-slave java %{jrebindir -- %{?1}}/java \\
%{_mandir}/man1/java.1%{man_comp} java.1%{man_comp} %{_mandir}/man1/java-%{uniquesuffix -- %{?1}}.1%{man_comp}
alternatives --add-slave java %{jrebindir -- %{?1}}/java \\
%{_mandir}/man1/%{alt_java_name}.1%{man_comp} %{alt_java_name}.1%{man_comp} %{_mandir}/man1/%{alt_java_name}-%{uniquesuffix -- %{?1}}.1%{man_comp} \\
%{_mandir}/man1/%{alt_java_name}.1%{man_comp} %{alt_java_name}.1%{man_comp} %{_mandir}/man1/%{alt_java_name}-%{uniquesuffix -- %{?1}}.1%{man_comp}
alternatives --add-slave java %{jrebindir -- %{?1}}/java \\
%{_mandir}/man1/jcmd.1%{man_comp} jcmd.1%{man_comp} %{_mandir}/man1/jcmd-%{uniquesuffix -- %{?1}}.1%{man_comp}
alternatives --add-slave java %{jrebindir -- %{?1}}/java \\
@ -2553,7 +2553,7 @@ exit 0
%endif
%changelog
* Mon Nov 10 2025 Andrew Hughes <gnu.andrew@redhat.com> - 1:25.0.1.0.8-1
* Wed Nov 12 2025 Andrew Hughes <gnu.andrew@redhat.com> - 1:25.0.1.0.8-1
- Create java-25-openjdk package based on java-21-openjdk
- Update to jdk-25.0.1+8 (GA)
- Update release notes with features of JDK 22, 23, 24 & 25
@ -2582,5 +2582,6 @@ exit 0
- Support jnativescan added by JDK-8317611: "Add a tool like jdeprscan to find usage of restricted methods"
- Add recent native libraries to _privatelibs (libjsvml.so, libsimdsort.so, libsyslookup.so)
- Support libsleef on AArch64 & RISC-V added by JDK-8329816, JDK-8320500 (RISC-V) & JDK-8312425 (AArch64)
- Remove superfluous backslashes that cause two alternative commands to be combined
- Sync the copy of the portable specfile with the latest update
- Resolves: RHEL-126022