diff options
author | obrien <obrien@FreeBSD.org> | 2001-02-10 07:06:40 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-02-10 07:06:40 +0000 |
commit | a6c943d17d2359cd935d86c6799b43516e7d58e5 (patch) | |
tree | a42e1b4dec29c2e34d2f22aef0cddc0d293f4337 /lib/compat | |
parent | 0508a06b28c83eb0dfedca52bff529a6419e9479 (diff) | |
download | FreeBSD-src-a6c943d17d2359cd935d86c6799b43516e7d58e5.zip FreeBSD-src-a6c943d17d2359cd935d86c6799b43516e7d58e5.tar.gz |
The compat[34]x dists need to have their machine arch appended.
Diffstat (limited to 'lib/compat')
-rw-r--r-- | lib/compat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compat/Makefile b/lib/compat/Makefile index 2761942..cb3d628 100644 --- a/lib/compat/Makefile +++ b/lib/compat/Makefile @@ -16,10 +16,10 @@ SUBDIR+= compat21 SUBDIR+= compat22 .endif .if defined(COMPAT3X) || defined(RELEASEDIR) -SUBDIR+= compat3x +SUBDIR+= compat3x.${MACHINE} .endif .if defined(COMPAT4X) || defined(RELEASEDIR) -SUBDIR+= compat4x +SUBDIR+= compat4x.${MACHINE} .endif .include <bsd.subdir.mk> |