blob: 0185cb70c662baecf06688340cfadeb1b3dd6abf (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Add COPYING file:
mkdir -p $PKG/usr/doc/xorg-server-$MODULAR_PACKAGE_VERSION
cp -a COPYING $PKG/usr/doc/xorg-server-$MODULAR_PACKAGE_VERSION
# Don't mess with my /var/log/ permissions:
rmdir $PKG/var/log
rmdir $PKG/var
# While I hate to have X11 take over another generic-sounding
# piece of prime filesystem real estate, this symlink will
# direct (for now) proprietary X drivers into the corrent
# location:
( cd $PKG/usr/lib
rm -rf modules
ln -sf xorg/modules .
)
|