mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
14 lines
344 B
Text
14 lines
344 B
Text
|
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
|