blob: f8c0a5fa323517c7b615450110dfce1d34d3f2a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FILESEXTRAPATHS_append := ":${THISDIR}/${PN}"
SRC_URI_append = "\
file://weston.sh \
"
do_install_append() {
install -d ${D}/${sysconfdir}/profile.d
install -m 0755 ${WORKDIR}/weston.sh ${D}/${sysconfdir}/profile.d/weston.sh
}
FILES_${PN} += " \
${sysconfdir}/profile.d/weston.sh \
"
|