diff options
author | Evan Miller | 2021-11-30 18:30:12 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-11-30 22:25:58 +0100 |
commit | 4006a27c5e44734350009262efb0e2ec8da5ff09 (patch) | |
tree | 8f644dfb5f937cdb13b96b57f20256e29f75118a | |
parent | qapi/machine.json: Fix incorrect description for die-id (diff) | |
download | qemu-4006a27c5e44734350009262efb0e2ec8da5ff09.tar.gz qemu-4006a27c5e44734350009262efb0e2ec8da5ff09.tar.xz qemu-4006a27c5e44734350009262efb0e2ec8da5ff09.zip |
scripts/entitlement.sh: Use backward-compatible cp flags
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>
Message-Id: <40635C6E-059A-4146-B1E2-F6376700EE85@gmail.com>
[Leave out -R, these are files and not directories. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rwxr-xr-x | scripts/entitlement.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/entitlement.sh b/scripts/entitlement.sh index e2c956a3ac..0f412949ec 100755 --- a/scripts/entitlement.sh +++ b/scripts/entitlement.sh @@ -15,7 +15,7 @@ ENTITLEMENT="$4" if $in_place; then trap 'rm "$DST.tmp"' exit - cp -af "$SRC" "$DST.tmp" + cp -pPf "$SRC" "$DST.tmp" SRC="$DST.tmp" else cd "$MESON_INSTALL_DESTDIR_PREFIX" |