svn commit: r289417 - head/sys/modules/cloudabi64

Ed Schouten ed at FreeBSD.org
Fri Oct 16 10:26:17 UTC 2015


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 \


More information about the svn-src-head mailing list