]> git.cameronkatri.com Git - apple_cmds.git/blob - file_cmds/dd/install_symlink.sh
md5: Don't symlink non working bins, setuid appropriate bins
[apple_cmds.git] / file_cmds / dd / install_symlink.sh
1 #!/bin/sh
2 set -e
3 set -x
4
5 case "$PLATFORM_NAME" in
6 iphoneos|appletvos|watchos|bridgeos)
7 ln -hfs /usr/local/bin/dd "$DSTROOT"/bin/dd
8 ;;
9 macosx)
10 ;;
11 *)
12 echo "Unsupported platform: $PLATFORM_NAME"
13 exit 1
14 ;;
15 esac
16