blob: f374273ff0b38d3c27c53b4c7521f0866c47e8bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--with-xinitdir=/etc/X11/xinit
make
make DESTDIR="$1" install
sed 's/enable_xauth=1/enable_xauth=0/' "$1/usr/bin/startx" >_
cat _ > "$1/usr/bin/startx"
|