Commit 713a4324 authored by runge's avatar runge

Fix --libs, echo -n doesn't work everywhere. Question: why -R only for Solaris??

parent e871649d
......@@ -55,13 +55,15 @@ while test $# -gt 0; do
echo "$includes"
;;
--libs)
libs=""
for dir in $libdir; do
echo -n "-L$dir "
libs="$libs -L$dir"
if [ "`uname`" = "SunOS" ]; then
echo -n "-R$dir "
# why only Solaris??
libs="$libs -R$dir"
fi
done
echo -lvncserver -lvncclient @LIBS@ @WSOCKLIB@
echo "$libs" -lvncserver -lvncclient @LIBS@ @WSOCKLIB@
;;
--link)
echo @CC@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment