]> git.saurik.com Git - apple/syslog.git/blob - xcodescripts/sim-compat-symlink.sh
f965b5069a84411a77be5c99f3db8c0f76399e0c
[apple/syslog.git] / xcodescripts / sim-compat-symlink.sh
1 #!/bin/bash -ex
2
3 if [[ "${PLATFORM_NAME}" =~ "simulator" ]]; then
4 ln -s libsystem_asl.dylib ${DSTROOT}${INSTALL_PATH}/libsystem_sim_asl.dylib
5 fi
6
7 exit 0