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:
John Birrell 1998-01-09 05:37:41 +00:00
parent e4f4247a08
commit 8d6fec39d2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32359

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