Fix typo in gcc-toolset-env

Resolves: RHEL-94760
This commit is contained in:
Siddhesh Poyarekar 2025-06-11 07:22:19 -04:00 committed by Siddhesh Poyarekar
parent e9f80772b4
commit 5c5559450d
2 changed files with 5 additions and 2 deletions

View File

@ -37,7 +37,7 @@ BuildRequires: scl-utils-build
Summary: Package that installs %scl Summary: Package that installs %scl
Name: %scl_name Name: %scl_name
Version: %{gts_ver}.0 Version: %{gts_ver}.0
Release: 7%{?dist} Release: 8%{?dist}
License: GPLv2+ License: GPLv2+
Group: Applications/File Group: Applications/File
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@ -264,6 +264,9 @@ fi
%endif %endif
%changelog %changelog
* Wed Jun 11 2025 Siddhesh Poyarekar <siddhesh@redhat.com> - 15.0-8
- Fix typo in gcc-toolset-env (RHEL-94760)
* Tue Jun 10 2025 Siddhesh Poyarekar <siddhesh@redhat.com> - 15.0-7 * Tue Jun 10 2025 Siddhesh Poyarekar <siddhesh@redhat.com> - 15.0-7
- Man page and documentation updates (RHEL-95996) - Man page and documentation updates (RHEL-95996)
- Support scl-style quoted invocation (RHEL-94760) - Support scl-style quoted invocation (RHEL-94760)

View File

@ -7,7 +7,7 @@ if [ -z "$1" ]; then
exec /usr/bin/sh exec /usr/bin/sh
# Compatibility with `scl enable`, where the entire command shows up as a # Compatibility with `scl enable`, where the entire command shows up as a
# single argument. # single argument.
if [ -z "$2" ]; then elif [ -z "$2" ]; then
exec sh -c "$@" exec sh -c "$@"
else else
exec "$@" exec "$@"