diff mbox series

scripts/entitlement.sh: Use backward-compatible cp flags

Message ID 40635C6E-059A-4146-B1E2-F6376700EE85@gmail.com
State New
Headers show
Series scripts/entitlement.sh: Use backward-compatible cp flags | expand

Commit Message

Evan Miller Nov. 30, 2021, 5:30 p.m. UTC
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 <emmiller@gmail.com>
diff mbox series

Patch

--- 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"