mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
14 lines
259 B
Text
14 lines
259 B
Text
post_install() {
|
|
cat << _EOF
|
|
|
|
Input device handling has changed since xorg-server 1.5.
|
|
Please read http://wiki.archlinux.org/index.php/Xorg_input_hotplugging.
|
|
|
|
_EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [ "`vercmp $2 1.4.99.906`" -lt 0 ]; then
|
|
post_install
|
|
fi
|
|
}
|