mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
use X11 in /usr if it is there
This commit is contained in:
parent
dc6f9f033a
commit
7e0854dae3
1 changed files with 4 additions and 0 deletions
|
@ -11,6 +11,10 @@ if [ "x$X11" = "x" ]; then
|
|||
X11=/usr/X
|
||||
elif [ -d /usr/openwin ]; then # for Sun
|
||||
X11=/usr/openwin
|
||||
elif [ -d /usr/include/X11 ]; then
|
||||
X11=/usr
|
||||
elif [ -d /usr/local/include/X11 ]; then
|
||||
X11=/usr/local
|
||||
else
|
||||
X11=noX11dir
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue