Merge pull request #17 from ilammy/macos-symlinks
Don’t symlink macOS framework if not building it
This commit is contained in:
commit
5bea567b12
|
@ -149,6 +149,9 @@ for SYS in ${ALL_SYSTEMS[@]}; do
|
||||||
if [[ $SYS == "MacOSX" ]]; then
|
if [[ $SYS == "MacOSX" ]]; then
|
||||||
SYSDIR="$FWROOT/$SYS"
|
SYSDIR="$FWROOT/$SYS"
|
||||||
FWDIR="$SYSDIR/$FWNAME.framework"
|
FWDIR="$SYSDIR/$FWNAME.framework"
|
||||||
|
if [[ ! -e "$FWDIR" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
cd $FWDIR
|
cd $FWDIR
|
||||||
|
|
||||||
mkdir "Versions"
|
mkdir "Versions"
|
||||||
|
|
Loading…
Reference in New Issue