summaryrefslogtreecommitdiffstats
path: root/Makefile.mips
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2010-08-26 14:54:12 +0000
committerimp <imp@FreeBSD.org>2010-08-26 14:54:12 +0000
commitf119604fd5cb6b1d3a57df7846c1bb9c1aaa9d8f (patch)
treeee51965aca846c5051547b814fd3ffb92ad6d583 /Makefile.mips
parent70697f52b37061d4ca92838b13cd03893285ebd7 (diff)
downloadFreeBSD-src-f119604fd5cb6b1d3a57df7846c1bb9c1aaa9d8f.zip
FreeBSD-src-f119604fd5cb6b1d3a57df7846c1bb9c1aaa9d8f.tar.gz
Guard against TARGET_ABI being undefined (TARGET_ABI will go away soon)
Diffstat (limited to 'Makefile.mips')
-rw-r--r--Makefile.mips2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.mips b/Makefile.mips
index 7b70b9d..cc08a59 100644
--- a/Makefile.mips
+++ b/Makefile.mips
@@ -1,5 +1,5 @@
# $FreeBSD$
-.if ${TARGET_ABI} == "n64"
+.if defined(TARGET_ABI) && ${TARGET_ABI} == "n64"
MK_RESCUE=no
.endif
OpenPOWER on IntegriCloud