From owner-svn-src-head@freebsd.org Fri Oct 16 10:26:17 2015 Return-Path: Delivered-To: svn-src-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 059829D2F3A; Fri, 16 Oct 2015 10:26:17 +0000 (UTC) (envelope-from ed@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 C1FA963C; Fri, 16 Oct 2015 10:26:16 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9GAQFVT077697; Fri, 16 Oct 2015 10:26:15 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9GAQFjk077696; Fri, 16 Oct 2015 10:26:15 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201510161026.t9GAQFjk077696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Fri, 16 Oct 2015 10:26:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r289417 - head/sys/modules/cloudabi64 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Oct 2015 10:26:17 -0000 Author: ed Date: Fri Oct 16 10:26:15 2015 New Revision: 289417 URL: https://svnweb.freebsd.org/changeset/base/289417 Log: Use the right variable name. MACHINE_CPUARCH expands to aarch64 for arm64, whereas MACHINE always corresponds to the directory name under sys/ that contains the sources for that architecture. Modified: head/sys/modules/cloudabi64/Makefile Modified: head/sys/modules/cloudabi64/Makefile ============================================================================== --- head/sys/modules/cloudabi64/Makefile Fri Oct 16 09:37:15 2015 (r289416) +++ head/sys/modules/cloudabi64/Makefile Fri Oct 16 10:26:15 2015 (r289417) @@ -1,7 +1,7 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../../compat/cloudabi64 -.PATH: ${.CURDIR}/../../${MACHINE_CPUARCH}/cloudabi64 +.PATH: ${.CURDIR}/../../${MACHINE}/cloudabi64 KMOD= cloudabi64 SRCS= cloudabi64_fd.c cloudabi64_poll.c cloudabi64_sock.c \