Build lib/csu/${MACHINE} only if it exists so that when porting FreeBSD

to another architecture (in this case the Alpha) we can continue to use
the host csu objects (from NetBSD). This should be a non-function change
to FreeBSD/i386.
This commit is contained in:
jb 1998-01-09 05:37:41 +00:00
parent 57d4125c71
commit 00b1a5e278

View File

@ -4,7 +4,7 @@
SUBDIR=csu/tahoe.pcc
.elif ${MACHINE} == "vax"
SUBDIR=csu/vax.pcc
.else
.elif exists(csu/${MACHINE})
SUBDIR=csu/${MACHINE}
.endif