devernay / xcodelegacy

Legacy components for XCode 4-12 (deprecated compilers and Mac OS X SDKs)

Home Page:https://github.com/devernay/xcodelegacy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

star is interpreted literally

EricFromCanada opened this issue · comments

On line 332, the star at rm -rf "$GCCDIR/usr/bin/*4.0" is interpreted literally, since it's inside quotes. To have it expand properly, it should be unquoted: rm -rf "$GCCDIR/usr/bin/"*4.0