gcc-toolset-15/gcc-toolset-env.in
Siddhesh Poyarekar 574ad5d274 Fix quoting and other issues in gcc-toolset-env script
Resolves: RHEL-94760
2025-06-04 15:14:55 -04:00

11 lines
181 B
Bash

#!/usr/bin/sh
# Environment wrapper for GCC Toolset %{gts_ver}
. %{_root_prefix}/lib/gcc-toolset/%{gts_ver}-env.source
if [ -z "$1" ]; then
exec /usr/bin/sh
else
exec "$@"
fi