diff options
author | Michael Pratt <mcpratt@pm.me> | 2023-05-25 02:31:17 -0400 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2023-06-05 08:31:47 +0200 |
commit | d87a8aa148ddf93b199a759deb088fff73787025 (patch) | |
tree | 5f96d125bf2f59682c1fd6a8e96d48b80d1d3ead /target/toolchain/files/wrapper.sh | |
parent | 1bad93c42669061b0248ca5cff1d83e399a2ef1a (diff) |
treewide: add ORIG_PATH variable
Add a variable that stores the original value of $PATH
in the host system's shell, before Make alters it.
This can be useful for when it is necessary
to ignore symlinks and programs made by the build system.
Define this new variable before all instances of
'export PATH:=' or similar.
Signed-off-by: Michael Pratt <mcpratt@pm.me>
Diffstat (limited to 'target/toolchain/files/wrapper.sh')
-rwxr-xr-x | target/toolchain/files/wrapper.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/toolchain/files/wrapper.sh b/target/toolchain/files/wrapper.sh index 4b3f8f911a..09a9cac928 100755 --- a/target/toolchain/files/wrapper.sh +++ b/target/toolchain/files/wrapper.sh @@ -43,6 +43,7 @@ TOOLCHAIN_BIN_DIR="$REALNAME_DIR/" # Set the PATH so that our run-time location is first # (get_feature is run from the path, so this has to be set) +export ORIG_PATH=${ORIG_PATH:-$PATH} export PATH="$TOOLCHAIN_BIN_DIR":$PATH export GCC_HONOUR_COPTS |