xtscal: Convert session script to an sh script so it can be sourced reducing forks

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5075 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2008-08-19 16:24:32 +00:00
parent 7b49a5b678
commit 9469a087a7
2 changed files with 3 additions and 3 deletions

View File

@ -4,16 +4,16 @@ SECTION = "x11/base"
DEPENDS = "virtual/libx11 libxft libxcalibrate"
PR = "r9"
PR = "r10"
SRC_URI = "${GPE_MIRROR}/xtscal-${PV}.tar.bz2 \
file://change-cross.patch;patch=1 \
file://cleanup.patch;patch=1 \
file://30xTs_Calibrate"
file://30xTs_Calibrate.sh"
inherit autotools
do_install_append() {
install -d ${D}${sysconfdir}/X11/Xsession.d/
install -m 0755 ${WORKDIR}/30xTs_Calibrate ${D}${sysconfdir}/X11/Xsession.d/
install -m 0755 ${WORKDIR}/30xTs_Calibrate.sh ${D}${sysconfdir}/X11/Xsession.d/
}