From b30c3e73bce8fbb473ea4f7f64a168edc24a2d0b Mon Sep 17 00:00:00 2001 From: José Bollo Date: Wed, 20 Jan 2016 16:58:29 +0100 Subject: improves install mode setting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When using install, the default mode value is 0755 that installs the files as executables. This patch removes that unexpected mode. Change-Id: I73e902a8907f98e94b5abaaf81d6c35ad98b0eb0 Signed-off-by: José Bollo --- meta-agl/recipes-core/systemd/systemd_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-agl/recipes-core/systemd/systemd_%.bbappend') diff --git a/meta-agl/recipes-core/systemd/systemd_%.bbappend b/meta-agl/recipes-core/systemd/systemd_%.bbappend index ef926953c..4e0d5d474 100644 --- a/meta-agl/recipes-core/systemd/systemd_%.bbappend +++ b/meta-agl/recipes-core/systemd/systemd_%.bbappend @@ -7,7 +7,7 @@ PACKAGECONFIG_append_pn-systemd = " networkd" do_install_append() { # Install /etc/e2fsck.conf to avoid boot stuck by wrong clock time - install -p -D ${WORKDIR}/e2fsck.conf ${D}/etc/e2fsck.conf + install -m 644 -p -D ${WORKDIR}/e2fsck.conf ${D}/etc/e2fsck.conf } FILES_${PN} += " /etc/e2fsck.conf " -- cgit 1.2.3-korg