svn commit: r400357 - head/Templates

Bryan Drewery bdrewery at FreeBSD.org
Tue Oct 27 21:53:59 UTC 2015


Author: bdrewery
Date: Tue Oct 27 21:53:58 2015
New Revision: 400357
URL: https://svnweb.freebsd.org/changeset/ports/400357

Log:
  Fix reversed logic for utmp vs utx

Modified:
  head/Templates/config.site

Modified: head/Templates/config.site
==============================================================================
--- head/Templates/config.site	Tue Oct 27 21:53:16 2015	(r400356)
+++ head/Templates/config.site	Tue Oct 27 21:53:58 2015	(r400357)
@@ -23,7 +23,7 @@ if [ -z "${OSVERSION}" ]; then
 fi
 [ -z "${OPSYS}" ] && OPSYS=$(uname -s)
 
-if [ ${OSVERSION} -lt 900000 ]; then
+if [ ${OSVERSION} -ge 900000 ]; then
 	have_utx="yes"
 	have_utmp="no"
 else


More information about the svn-ports-all mailing list