diff options
author | jmallett <jmallett@FreeBSD.org> | 2012-03-29 02:54:35 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2012-03-29 02:54:35 +0000 |
commit | 4544b2987d0d95e6ea49d4f0c3281c2a11ce8f77 (patch) | |
tree | 1fac0394055b095aec90d117db2f722cff6a8dcb /kerberos5 | |
parent | 362bad78cae4d38646200d3ebffd68a6bcdc6921 (diff) | |
download | FreeBSD-src-4544b2987d0d95e6ea49d4f0c3281c2a11ce8f77.zip FreeBSD-src-4544b2987d0d95e6ea49d4f0c3281c2a11ce8f77.tar.gz |
Assume a big-endian default on MIPS and drop the "eb" suffix from MACHINE_ARCH.
This makes our naming scheme more closely match other systems and the
expectations of much third-party software. MIPS builds which are little-endian
should require and exhibit no changes. Big-endian TARGET_ARCHes must be
changed:
From: To:
mipseb mips
mipsn32eb mipsn32
mips64eb mips64
An entry has been added to UPDATING and some foot-shooting protection (complete
with warnings which should become errors in the near future) to the top-level
base system Makefile.
Diffstat (limited to 'kerberos5')
-rw-r--r-- | kerberos5/lib/libkafs5/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kerberos5/lib/libkafs5/Makefile b/kerberos5/lib/libkafs5/Makefile index 457b637..d17b6b8 100644 --- a/kerberos5/lib/libkafs5/Makefile +++ b/kerberos5/lib/libkafs5/Makefile @@ -10,8 +10,7 @@ MAN= kafs5.3 # Linking with libkrb5 uncovers a bug in binutils. # See http://repo.or.cz/w/binutils.git/commit/ee05170bf71819c99cb5a36a44735c231ae03c56 . # -.if ${MACHINE_ARCH} != "mipsn32eb" && ${MACHINE_ARCH} != "mipsel" && \ - ${MACHINE_ARCH} != "mipseb" && ${MACHINE_ARCH} != "mips" +.if ${MACHINE} != "mips" LDADD+= -lkrb5 LDFLAGS= -Wl,--no-undefined .endif |