Author: brooks
Date: Thu Jan 24 20:47:37 2013
New Revision: 245893
URL: http://svnweb.freebsd.org/changeset/base/245893

Log:
  Use = not == in test arguments.
  
  Submitted by: Christoph Mallon <christoph.mal...@gmx.de>

Modified:
  head/tools/install.sh

Modified: head/tools/install.sh
==============================================================================
--- head/tools/install.sh       Thu Jan 24 19:09:38 2013        (r245892)
+++ head/tools/install.sh       Thu Jan 24 20:47:37 2013        (r245893)
@@ -62,7 +62,7 @@ fi
 
 # the remaining arguments are assumed to be files/dirs only.
 if [ -n "${linkmode}" ]; then
-       if [ "${linkmode}" == "symbolic" ]; then
+       if [ "${linkmode}" = "symbolic" ]; then
                ln -fsh "$@"
        else
                ln -f "$@"
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to