1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

xrdb: move the xrdb xsession from xserver-kdrive-common to here

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4723 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton
2008-06-24 10:54:14 +00:00
parent 9b63c68b0f
commit 01c743d742
2 changed files with 12 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
if [ -e $HOME/.Xdefaults ]; then
xrdb -merge -nocpp < $HOME/.Xdefaults
fi
+8
View File
@@ -4,3 +4,11 @@ DESCRIPTION = "X server resource database utility"
LICENSE = "xrdb"
DEPENDS += "libxmu"
PE = "1"
PR = "r1"
SRC_URI += "file://60xXDefaults"
do_install_append() {
install -d ${D}${sysconfdir}/X11/Xsession.d/
install -m 0755 ${WORKDIR}/60xXDefaults ${D}${sysconfdir}/X11/Xsession.d/
}