svn commit: r245893 - head/tools

Brooks Davis brooks at FreeBSD.org
Thu Jan 24 20:47:38 UTC 2013


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.mallon at 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 "$@"


More information about the svn-src-head mailing list