Guard against TARGET_ABI being undefined (TARGET_ABI will go away soon)

This commit is contained in:
imp 2010-08-26 14:54:12 +00:00
parent 70697f52b3
commit f119604fd5

View File

@ -1,5 +1,5 @@
# $FreeBSD$
.if ${TARGET_ABI} == "n64"
.if defined(TARGET_ABI) && ${TARGET_ABI} == "n64"
MK_RESCUE=no
.endif