mirror of
git://slackware.nl/current.git
synced 2025-01-29 08:36:40 +01:00
b76270bf9e
Wed May 19 08:58:23 UTC 2010 Slackware 13.1 x86_64 stable is released! Lots of thanks are due -- see the RELEASE_NOTES and the rest of the ChangeLog for credits. The ISOs are on their way to replication, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We are taking pre-orders now at store.slackware.com, and offering a discount if you sign up for a subscription. Consider picking up a copy to help support the project. Thanks again to the Slackware community for testing, contributing, and generally holding us to a high level of quality. :-) Enjoy!
19 lines
671 B
Text
19 lines
671 B
Text
mkdir -p $PKG/etc/X11
|
|
( cd $PKG/usr/lib/X11
|
|
mv xdm $PKG/etc/X11
|
|
ln -sf ../../../etc/X11/xdm .
|
|
)
|
|
mv $PKG/etc/X11/xdm/Xsession $PKG/etc/X11/xdm/Xsession.orig
|
|
mv $PKG/etc/X11/xdm/Xsetup_0 $PKG/etc/X11/xdm/Xsetup_0.orig
|
|
cp -a $CWD/post-install/xdm/Xsession $PKG/etc/X11/xdm/Xsession
|
|
cp -a $CWD/post-install/xdm/Xsetup_0 $PKG/etc/X11/xdm/Xsetup_0
|
|
chown root:root $PKG/etc/X11/xdm/Xsession $PKG/etc/X11/xdm/Xsetup_0
|
|
chmod 755 $PKG/etc/X11/xdm/Xsession $PKG/etc/X11/xdm/Xsetup_0
|
|
( cd $PKG/etc/X11/xdm
|
|
mv xdm-config xdm-config.new
|
|
mv Xservers Xservers.new
|
|
mv Xsession Xsession.new
|
|
)
|
|
mkdir -p $PKG/var/lib/xdm
|
|
chown root:root $PKG/var/lib/xdm
|
|
chmod 755 $PKG/var/lib/xdm
|