Older versions of Mac OS X do not support cp -a. The cp man page indicates that -a is equivalent to -pPR.
Signed-off-by: Evan Miller <emmil...@gmail.com> --- scripts/entitlement.sh.orig +++ scripts/entitlement.sh @@ -15,7 +15,7 @@ if $in_place; then trap 'rm "$DST.tmp"' exit - cp -af "$SRC" "$DST.tmp" + cp -pPRf "$SRC" "$DST.tmp" SRC="$DST.tmp" else cd "$MESON_INSTALL_DESTDIR_PREFIX"