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