diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-03-01 20:51:41 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2011-03-01 20:51:41 +0000 |
commit | 76ac72fd43298476335cbdca3cee5bb0ead7082c (patch) | |
tree | f4ee30170e7acb87846ed3c6528dc617030533b5 /sys/modules/zfs | |
parent | 4ff8893050e8bf88d31629066c47df20fe6f422a (diff) | |
download | FreeBSD-src-76ac72fd43298476335cbdca3cee5bb0ead7082c.zip FreeBSD-src-76ac72fd43298476335cbdca3cee5bb0ead7082c.tar.gz |
Fix misuse of TARGET_ARCH. This should be MACHINE_ARCH.
Diffstat (limited to 'sys/modules/zfs')
-rw-r--r-- | sys/modules/zfs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/zfs/Makefile b/sys/modules/zfs/Makefile index 53271f4..21a6ad0 100644 --- a/sys/modules/zfs/Makefile +++ b/sys/modules/zfs/Makefile @@ -85,7 +85,7 @@ CFLAGS+=-I${SUNW}/common CFLAGS+=-I${.CURDIR}/../../../include CFLAGS+=-DBUILDING_ZFS -.if ${TARGET_ARCH} == "powerpc64" +.if ${MACHINE_ARCH} == "powerpc64" CFLAGS+=-mminimal-toc .endif |