From owner-svn-ports-head@freebsd.org Fri Feb 3 23:05:48 2017 Return-Path: Delivered-To: svn-ports-head@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 AE666CCFC49; Fri, 3 Feb 2017 23:05:48 +0000 (UTC) (envelope-from swills@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 7DFE7D4C; Fri, 3 Feb 2017 23:05:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v13N5ldf034245; Fri, 3 Feb 2017 23:05:47 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v13N5loF034244; Fri, 3 Feb 2017 23:05:47 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201702032305.v13N5loF034244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 3 Feb 2017 23:05:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433270 - head/devel/grumpy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2017 23:05:48 -0000 Author: swills Date: Fri Feb 3 23:05:47 2017 New Revision: 433270 URL: https://svnweb.freebsd.org/changeset/ports/433270 Log: devel/grumpy: Fix syntax Modified: head/devel/grumpy/Makefile Modified: head/devel/grumpy/Makefile ============================================================================== --- head/devel/grumpy/Makefile Fri Feb 3 22:15:22 2017 (r433269) +++ head/devel/grumpy/Makefile Fri Feb 3 23:05:47 2017 (r433270) @@ -16,10 +16,10 @@ GH_TAGNAME= 348f038 USES= gmake python -.if ${ARCH} == amd64 +.if ${ARCH} == "amd64" PLIST_SUB= ARCH=amd64 .endif -.if ${ARCH} == i386 +.if ${ARCH} == "i386" PLIST_SUB= ARCH=386 .endif