mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
214f11c865
BSD.x11.dist.
16 lines
356 B
Bash
16 lines
356 B
Bash
#!/bin/sh
|
|
|
|
if [ "x$1" = "x" ]; then
|
|
exit 1;
|
|
fi
|
|
if [ "x$2" != "xINSTALL" -a "x$2" != "xDEINSTALL" ]; then
|
|
exit 1;
|
|
fi
|
|
|
|
echo "**********************************************************"
|
|
echo "You should restart X server or do 'xset fp rehash' command"
|
|
echo "to enable this update."
|
|
echo "**********************************************************"
|
|
|
|
exit 0;
|