diff options
author | jb <jb@FreeBSD.org> | 1998-01-09 05:37:41 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-01-09 05:37:41 +0000 |
commit | 00b1a5e2787da8edd8f5339b6a2e5dcbfd4298a3 (patch) | |
tree | d9a22a53c3e80de4e6c58054fc0efeceea637648 /lib/Makefile | |
parent | 57d4125c71b3563b2a3c7d5affee9ab7135c37bd (diff) | |
download | FreeBSD-src-00b1a5e2787da8edd8f5339b6a2e5dcbfd4298a3.zip FreeBSD-src-00b1a5e2787da8edd8f5339b6a2e5dcbfd4298a3.tar.gz |
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.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 471ddf2..d69ee2d 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -4,7 +4,7 @@ SUBDIR=csu/tahoe.pcc .elif ${MACHINE} == "vax" SUBDIR=csu/vax.pcc -.else +.elif exists(csu/${MACHINE}) SUBDIR=csu/${MACHINE} .endif |