Author: joes
Date: Tue Jan 20 18:58:55 2009
New Revision: 736198
URL: http://svn.apache.org/viewvc?rev=736198&view=rev
Log:
fix the solaris bug correctly, damnit!
Modified:
httpd/apreq/trunk/apreq2-config.in
Modified: httpd/apreq/trunk/apreq2-config.in
URL:
http://svn.apache.org/viewvc/httpd/apreq/trunk/apreq2-config.in?rev=736198&r1=736197&r2=736198&view=diff
==============================================================================
--- httpd/apreq/trunk/apreq2-config.in (original)
+++ httpd/apreq/trunk/apreq2-config.in Tue Jan 20 18:58:55 2009
@@ -215,10 +215,10 @@
done
if test -n "$flags"; then
- if [ -n "$SOLARIS" ]; then
- $flags=`echo $flags | sed -e 's/-L\([^ ]*\)/-R\1 -L\1/g'`
- fi
- echo "$flags"
+ if test -n "$SOLARIS"; then
+ flags=`echo $flags | sed -e 's/-L\([^ ]*\)/-R\1 -L\1/g'`
+ fi
+ echo "$flags"
fi
exit 0