diff options
Diffstat (limited to 'source/x/x11/post-install/x11-app-test.post-install')
-rw-r--r-- | source/x/x11/post-install/x11-app-test.post-install | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/x/x11/post-install/x11-app-test.post-install b/source/x/x11/post-install/x11-app-test.post-install new file mode 100644 index 00000000..82ec3cef --- /dev/null +++ b/source/x/x11/post-install/x11-app-test.post-install @@ -0,0 +1,13 @@ +VERSION=i20070206 +# Move things into /etc/X11 that are supposed to be there: +if [ -d usr/lib/X11 ]; then + ( cd $PKG/usr/lib/X11 + for dir in fs lbxproxy proxymngr rstart xdm xinit xsm ; do + if [ -d $dir ]; then + mkdir -p $PKG/etc/X11 + mv $dir $PKG/etc/X11 + ln -sf ../../../etc/X11/$dir . + done + done + ) +fi |