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 ...@@ -55,13 +55,15 @@ while test $# -gt 0; do
echo "$includes" echo "$includes"
;; ;;
--libs) --libs)
libs=""
for dir in $libdir; do for dir in $libdir; do
echo -n "-L$dir " libs="$libs -L$dir"
if [ "`uname`" = "SunOS" ]; then if [ "`uname`" = "SunOS" ]; then
echo -n "-R$dir " # why only Solaris??
libs="$libs -R$dir"
fi fi
done done
echo -lvncserver -lvncclient @LIBS@ @WSOCKLIB@ echo "$libs" -lvncserver -lvncclient @LIBS@ @WSOCKLIB@
;; ;;
--link) --link)
echo @CC@ 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