diff options
author | Bradley Sepos <[email protected]> | 2019-09-23 04:15:57 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2019-09-23 04:15:57 -0400 |
commit | 6e2747006c6103d370bddd3093c2b9cb0a6dc3ae (patch) | |
tree | 5c5e11eb270399d4596bcb48693e22bf9517f444 /make | |
parent | 86e0173ec1b3c953e7a1100684caabc095e91edc (diff) |
make: Fix typo in xcodemake.
Wrong slice index resulted in first / being stripped.
Diffstat (limited to 'make')
-rwxr-xr-x | make/xcodemake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/xcodemake b/make/xcodemake index 3ea3d02ec..7eae2804c 100755 --- a/make/xcodemake +++ b/make/xcodemake @@ -125,7 +125,7 @@ if [ -n "$reconfigure" ]; then fi done PATH="${PATH}${APPLE_PATH}" - export PATH="${PATH:2}" + export PATH="${PATH:1}" echo "Unclobbering PATH:" echo " export PATH=\"${PATH}\"" |