diff options
author | huderlem <huderlem@gmail.com> | 2019-05-06 20:05:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-06 20:05:32 -0500 |
commit | 119616d503f00bc04517c02f196a8c4969b0eb2a (patch) | |
tree | 3a1d7e9841c3bc4452df752fa636c6747ca27b4e | |
parent | a9e4e336defa7ced8660de8e63ecc222573c433c (diff) | |
parent | bfc767e567a142adce12a432470dfb34819a1a1b (diff) |
Merge pull request #26 from 916253/patch-1
Remove trailing slash to fix macOS compatibility
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ if [ "$1" != "" ]; then mkdir -p $1/tools/agbcc/lib cp agbcc $1/tools/agbcc/bin/ cp old_agbcc $1/tools/agbcc/bin/ - cp -R libc/include/ $1/tools/agbcc/ #drop include, because we don't want include/include + cp -R libc/include $1/tools/agbcc/ #drop include, because we don't want include/include cp ginclude/* $1/tools/agbcc/include/ cp libgcc.a $1/tools/agbcc/lib/ cp libc.a $1/tools/agbcc/lib/ |