From owner-svn-ports-head@freebsd.org Fri Sep 11 18:50:48 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0EB473E296E; Fri, 11 Sep 2020 18:50:48 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bp4Zv6PR6z3SDt; Fri, 11 Sep 2020 18:50:47 +0000 (UTC) (envelope-from arrowd@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF7578732; Fri, 11 Sep 2020 18:50:47 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08BIoleW058393; Fri, 11 Sep 2020 18:50:47 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08BIolI1058392; Fri, 11 Sep 2020 18:50:47 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <202009111850.08BIolI1058392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Fri, 11 Sep 2020 18:50:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548256 - head/x11-wm/enlightenment X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: head/x11-wm/enlightenment X-SVN-Commit-Revision: 548256 X-SVN-Commit-Repository: ports 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.33 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, 11 Sep 2020 18:50:48 -0000 Author: arrowd Date: Fri Sep 11 18:50:47 2020 New Revision: 548256 URL: https://svnweb.freebsd.org/changeset/ports/548256 Log: x11-wm/enlightenment: Fix malformed conditional. Submitted by: Peter TKATCHENKO Modified: head/x11-wm/enlightenment/Makefile Modified: head/x11-wm/enlightenment/Makefile ============================================================================== --- head/x11-wm/enlightenment/Makefile Fri Sep 11 18:08:11 2020 (r548255) +++ head/x11-wm/enlightenment/Makefile Fri Sep 11 18:50:47 2020 (r548256) @@ -41,10 +41,10 @@ CURRENT_ARCH= ${ARCH} .if ${CURRENT_ARCH} == amd64 ENLIGHTENMENT_ARCH= ${OPSYS:tl}-x86_64 .else -.if ${CURRENT_ARCH} == 'i386' +.if ${CURRENT_ARCH} == i386 ENLIGHTENMENT_ARCH= ${OPSYS:tl}-x86 .else -.if ${CURRENT_ARCH} == 'aarch64' +.if ${CURRENT_ARCH} == aarch64 ENLIGHTENMENT_ARCH= ${OPSYS:tl}-arm .else ENLIGHTENMENT_ARCH= ${OPSYS:tl}-${CURRENT_ARCH}