summaryrefslogtreecommitdiffstats
path: root/source/x/x11/post-install/x11-app-test.post-install
blob: 82ec3cefe2223bd569b476e0d201dd4131ce2327 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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