From 302e9c0c537f8e52fd4000b3f97cfa20b5b3a205 Mon Sep 17 00:00:00 2001 From: Francisco Redondo Marchena Date: Thu, 12 Feb 2015 10:02:38 +0000 Subject: Use coreutils dd instead of busybox dd This hack is for supporting "fdatasync" argument in "dd" command which busybox "dd" does not support. This hack should dissappear when we merge /usr/bin and /bin. --- strata/coreutils-common/coreutils.morph | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/strata/coreutils-common/coreutils.morph b/strata/coreutils-common/coreutils.morph index 08808333..cc1ae683 100644 --- a/strata/coreutils-common/coreutils.morph +++ b/strata/coreutils-common/coreutils.morph @@ -9,3 +9,8 @@ build-commands: - make WERROR_CFLAGS= install-commands: - make INSTALL_PROGRAM=install DESTDIR="$DESTDIR" install +# This hack is for supporting "fdatasync" argument in "dd" command +# which busybox "dd" does not support. +# This hack should dissappear when we merge /usr/bin and /bin. +- mkdir -p "$DESTDIR"/bin/ +- ln -sf ../usr/bin/dd "$DESTDIR"/bin/ -- cgit v1.2.1