diff options
author | jkh <jkh@FreeBSD.org> | 2001-03-23 21:43:47 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2001-03-23 21:43:47 +0000 |
commit | 5f3d327c279560304dd26b9ca2a225925d817cea (patch) | |
tree | 45f5801cd5ff63f63377bd64faae1020b70ffe09 /release/Makefile | |
parent | c6fdb61aa7db6301e2d0f28a266a50d1cc91e7c7 (diff) | |
download | FreeBSD-src-5f3d327c279560304dd26b9ca2a225925d817cea.zip FreeBSD-src-5f3d327c279560304dd26b9ca2a225925d817cea.tar.gz |
The early compat dists only make sense on the i386
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile index c0b4974..cd02a72 100644 --- a/release/Makefile +++ b/release/Makefile @@ -78,7 +78,11 @@ DIST_DOCS= ABOUT.TXT ERRATA.TXT LAYOUT.TXT README.TXT HARDWARE.TXT \ # Things which without too much trouble can be considered variables # BIN_DISTS are special in that they get full /etc installation sets. # +.if ${MACHINE_ARCH} == "i386" COMPAT_DISTS?= compat1x compat20 compat21 compat22 compat3x compat4x +.else +COMPAT_DISTS?= compat4x +.endif OTHER_DISTS?= manpages catpages games proflibs dict info doc CRYPTO_DISTS?= crypto krb4 krb5 BIN_DISTS?= bin |