diff options
author | sevan <sevan@pkgsrc.org> | 2015-11-07 23:46:28 +0000 |
---|---|---|
committer | sevan <sevan@pkgsrc.org> | 2015-11-07 23:46:28 +0000 |
commit | cb73ce4f2463e76acafdbeb75066f7f44e3acfb5 (patch) | |
tree | 933276cd263eb360e8fd7cc967bd0f0a9783e8e9 /mk | |
parent | 5be12dda0d3f8b1ef9effde9a7f96e74ebbc7d9f (diff) | |
download | pkgsrc-cb73ce4f2463e76acafdbeb75066f7f44e3acfb5.tar.gz |
MACHINE_ARCH for Bitrig/amd64 is now set to x86_64
Ammend if statement
Diffstat (limited to 'mk')
-rw-r--r-- | mk/platform/Bitrig.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/Bitrig.mk b/mk/platform/Bitrig.mk index ce03f6a6630..62375ac759c 100644 --- a/mk/platform/Bitrig.mk +++ b/mk/platform/Bitrig.mk @@ -1,4 +1,4 @@ -# $NetBSD: Bitrig.mk,v 1.1 2015/06/04 15:48:45 sevan Exp $ +# $NetBSD: Bitrig.mk,v 1.2 2015/11/07 23:46:28 sevan Exp $ # # Variable definitions for the Bitrig operating system. @@ -57,7 +57,7 @@ _OPSYS_NO_WHOLE_ARCHIVE_FLAG= -Wl,--no-whole-archive _STRIPFLAG_CC?= ${_INSTALL_UNSTRIPPED:D:U-s} # cc(1) option to strip _STRIPFLAG_INSTALL?= ${_INSTALL_UNSTRIPPED:D:U-s} # install(1) option to strip -.if (${MACHINE_ARCH} == "amd64") || (${MACHINE_ARCH} == "arm") +.if (${MACHINE_ARCH} == "x86_64") || (${MACHINE_ARCH} == "arm") DEFAULT_SERIAL_DEVICE?= /dev/tty00 SERIAL_DEVICES?= /dev/tty00 \ /dev/tty01 |