11 lines
181 B
Bash
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
|