Date: Thu, 16 Mar 2017 22:59:19 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436310 - head/sysutils/mmc-utils Message-ID: <201703162259.v2GMxJD8088081@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Thu Mar 16 22:59:19 2017 New Revision: 436310 URL: https://svnweb.freebsd.org/changeset/ports/436310 Log: Correct malformed conditional in r436309. Modified: head/sysutils/mmc-utils/Makefile Modified: head/sysutils/mmc-utils/Makefile ============================================================================== --- head/sysutils/mmc-utils/Makefile Thu Mar 16 22:36:04 2017 (r436309) +++ head/sysutils/mmc-utils/Makefile Thu Mar 16 22:59:19 2017 (r436310) @@ -20,7 +20,7 @@ PLIST_FILES= man/man1/mmc.1.gz sbin/mmc .include <bsd.port.pre.mk> .if (${OPSYS} == FreeBSD && \ - ${OSVERSION} < 1200025)) || \ + ${OSVERSION} < 1200025) || \ ${OPSYS} == DragonFly IGNORE= only supported on recent OS versions .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703162259.v2GMxJD8088081>