From: Thomas Petazzoni Date: Sun, 30 Nov 2014 14:18:53 +0000 (+0100) Subject: logrotate: install configuration file unconditionally X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a28ed55f84ac75ac1b3f2374ef0b10aafb61d7f;p=buildroot.git logrotate: install configuration file unconditionally As discussed, users should use a rootfs overlay or a post-build script instead of a custom skeleton to override files installed by Buildroot, so there is no point in having conditions when installing init scripts or configuration files. Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/package/logrotate/logrotate.mk b/package/logrotate/logrotate.mk index 2e49feb7c1..dc26d8538a 100644 --- a/package/logrotate/logrotate.mk +++ b/package/logrotate/logrotate.mk @@ -17,9 +17,7 @@ endef define LOGROTATE_INSTALL_TARGET_CMDS $(MAKE) PREFIX=$(TARGET_DIR) -C $(@D) install - if [ ! -f $(TARGET_DIR)/etc/logrotate.conf ]; then \ - $(INSTALL) -m 0644 package/logrotate/logrotate.conf $(TARGET_DIR)/etc/logrotate.conf; \ - fi + $(INSTALL) -m 0644 package/logrotate/logrotate.conf $(TARGET_DIR)/etc/logrotate.conf $(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/logrotate.d endef