diff options
author | Sam Nelson <sam.nelson@ti.com> | 2015-12-04 22:55:09 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2015-12-04 22:06:13 -0500 |
commit | d3a9812e4c1fb16954d2452b93cb3cac926a28ff (patch) | |
tree | c809b2e1102da5757ec921aa5e5d6681f4d74059 | |
parent | 47d16a7911291d1468f258201d92abebca51585c (diff) | |
download | meta-ti-d3a9812e4c1fb16954d2452b93cb3cac926a28ff.tar.gz |
mpm-transport: Change file permissions
- Remove executable permission for json and include files.
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-ti/mpm-transport/mpm-transport_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-ti/mpm-transport/mpm-transport_git.bb b/recipes-ti/mpm-transport/mpm-transport_git.bb index 7d86196b..812ae04e 100644 --- a/recipes-ti/mpm-transport/mpm-transport_git.bb +++ b/recipes-ti/mpm-transport/mpm-transport_git.bb | |||
@@ -40,11 +40,11 @@ do_install() { | |||
40 | oe_runmake installbin BASE_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir} | 40 | oe_runmake installbin BASE_DIR=${S} INSTALL_BIN_BASE_DIR=${D}/${bindir} |
41 | 41 | ||
42 | install -d ${D}${includedir}/ | 42 | install -d ${D}${includedir}/ |
43 | install -c -m 755 ${S}/include/* ${D}${includedir}/ | 43 | install -c -m 644 ${S}/include/* ${D}${includedir}/ |
44 | 44 | ||
45 | install -d ${D}${libdir}/ | 45 | install -d ${D}${libdir}/ |
46 | cp -a ${S}/lib/* ${D}${libdir}/ | 46 | cp -a ${S}/lib/* ${D}${libdir}/ |
47 | 47 | ||
48 | install -d ${D}${sysconfdir}/mpm/ | 48 | install -d ${D}${sysconfdir}/mpm/ |
49 | install -c -m 755 ${S}/scripts/mpm_config.json ${D}${sysconfdir}/mpm/mpm_config.json | 49 | install -c -m 644 ${S}/scripts/mpm_config.json ${D}${sysconfdir}/mpm/mpm_config.json |
50 | } | 50 | } |