diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2022-09-02 10:14:03 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2022-09-02 10:14:03 +0000 |
commit | b0c6bacfe44cc4eb54def141f1eed327415d928c (patch) | |
tree | d66ce88eb6bb6040d3fcea9bb724ef22c11d28ac /sys/lib | |
parent | cdacb2fee2d20537cec052b64576e5ff947b16bc (diff) |
Add ufs2 to the list of filesystem, for the sake of boot blocks which do not
provide an explicit list of files to build in libsa.
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libsa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/Makefile b/sys/lib/libsa/Makefile index 8cac7712bbb..3dce408a4f0 100644 --- a/sys/lib/libsa/Makefile +++ b/sys/lib/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.30 2019/08/03 15:22:17 deraadt Exp $ +# $OpenBSD: Makefile,v 1.31 2022/09/02 10:14:02 miod Exp $ # $NetBSD: Makefile,v 1.13 1996/10/02 16:19:51 ws Exp $ LIB= sa @@ -38,7 +38,7 @@ SRCS+= close.c closeall.c dev.c disklabel.c dkcksum.c cons.c ioctl.c \ write.c readdir.c # boot filesystems -SRCS+= ufs.c cd9660.c +SRCS+= ufs.c ufs2.c cd9660.c .if defined(SA_ZLIB) SRCS+= cread.c |