mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
look in right place for 64-bit X libs
This commit is contained in:
parent
0ebee0de76
commit
c968e5190b
1 changed files with 5 additions and 0 deletions
5
bin/9l
5
bin/9l
|
@ -147,6 +147,11 @@ then
|
||||||
then
|
then
|
||||||
X11=/usr/X11R6
|
X11=/usr/X11R6
|
||||||
fi
|
fi
|
||||||
|
# x86_64 seems to put its 64-bit libraries in lib64.
|
||||||
|
if [ "${OBJTYPE:-`uname -m`}" = "x86_64" ]
|
||||||
|
then
|
||||||
|
libsl="$libsl -L$X11/lib64"
|
||||||
|
fi
|
||||||
libsl="$libsl -L$X11/lib -lX11"
|
libsl="$libsl -L$X11/lib -lX11"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue