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
8