From: Bartosz Bilas Date: Fri, 13 Nov 2020 11:39:40 +0000 (+0100) Subject: package/rauc: prevent occurring the error when directory exists X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fefdd0511e99676aceb09403063f336e631d5067;p=buildroot.git package/rauc: prevent occurring the error when directory exists Add -p argument that ignore that specified directory already exists. Fixes: mkdir: cannot create directory ā€˜/home/bartekk/buildroot-2020.11-rc1/output/target/usr/lib/systemd/system/rauc.service.dā€™: File exists Signed-off-by: Bartosz Bilas Signed-off-by: Peter Korsgaard --- diff --git a/package/rauc/rauc.mk b/package/rauc/rauc.mk index 1915c783aa..61c50ab316 100644 --- a/package/rauc/rauc.mk +++ b/package/rauc/rauc.mk @@ -31,7 +31,7 @@ RAUC_DEPENDENCIES += systemd endif define RAUC_INSTALL_INIT_SYSTEMD - mkdir $(TARGET_DIR)/usr/lib/systemd/system/rauc.service.d + mkdir -p $(TARGET_DIR)/usr/lib/systemd/system/rauc.service.d printf '[Install]\nWantedBy=multi-user.target\n' \ >$(TARGET_DIR)/usr/lib/systemd/system/rauc.service.d/buildroot-enable.conf endef