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:10:32 -0500 |
commit | 5ea65eceb4d81a5c9a192216819bec8223a979cf (patch) | |
tree | fbf1c1e346608e5316b60d06ca55149df0cbe2b1 /recipes-ti/mpm-transport | |
parent | 3cb73c27e6a5e98eaeaadcd97da9cab3a2d8d770 (diff) | |
download | meta-ti-5ea65eceb4d81a5c9a192216819bec8223a979cf.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>
Diffstat (limited to 'recipes-ti/mpm-transport')
-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 | } |