From owner-svn-ports-all@freebsd.org Thu Mar 16 22:59:20 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D212BD0FA3A; Thu, 16 Mar 2017 22:59:20 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F1531F9F; Thu, 16 Mar 2017 22:59:20 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2GMxJPI088082; Thu, 16 Mar 2017 22:59:19 GMT (envelope-from marius@FreeBSD.org) Received: (from marius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2GMxJD8088081; Thu, 16 Mar 2017 22:59:19 GMT (envelope-from marius@FreeBSD.org) Message-Id: <201703162259.v2GMxJD8088081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marius set sender to marius@FreeBSD.org using -f From: Marius Strobl Date: Thu, 16 Mar 2017 22:59:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436310 - head/sysutils/mmc-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2017 22:59:20 -0000 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 .if (${OPSYS} == FreeBSD && \ - ${OSVERSION} < 1200025)) || \ + ${OSVERSION} < 1200025) || \ ${OPSYS} == DragonFly IGNORE= only supported on recent OS versions .endif