diff options
author | jhb <jhb@FreeBSD.org> | 2002-01-03 19:57:35 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-01-03 19:57:35 +0000 |
commit | 27f95e7d69336fa9a8eeae13915fb3329cdd0c6d (patch) | |
tree | c1b0e0a62272a3c126fc04e90623a48565fb9870 | |
parent | b0ee025908509013f19033ce212b855b857e4398 (diff) | |
download | FreeBSD-src-27f95e7d69336fa9a8eeae13915fb3329cdd0c6d.zip FreeBSD-src-27f95e7d69336fa9a8eeae13915fb3329cdd0c6d.tar.gz |
Don't build csu or libgcc on sparc64 for the time being.
-rw-r--r-- | gnu/lib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/lib/Makefile b/gnu/lib/Makefile index cfd5060..02c7e29 100644 --- a/gnu/lib/Makefile +++ b/gnu/lib/Makefile @@ -1,6 +1,10 @@ # $FreeBSD$ +.if ${MACHINE_ARCH} == "sparc64" +SUBDIR= libdialog libregex libreadline +.else SUBDIR= csu libdialog libgcc libregex libreadline +.endif .if ${OBJFORMAT} == aout .if !defined(NOLIBC_R) |