diff options
author | Eugene Grosbein <eugen@FreeBSD.org> | 2022-06-10 14:03:07 +0000 |
---|---|---|
committer | Eugene Grosbein <eugen@FreeBSD.org> | 2022-06-10 14:09:20 +0000 |
commit | 796d48ec416863ab2826a1205365710635244023 (patch) | |
tree | 22c128d67af50aff4183a8bb0e0599cc09b711a1 /libexec/ftpd | |
parent | 0e981d79b19da8fc550ea0dbe46e8658be988db4 (diff) | |
download | src-796d48ec416863ab2826a1205365710635244023.tar.gz src-796d48ec416863ab2826a1205365710635244023.zip |
ftpd(8): do not refer to now unused libxo(3)
In 2018, the commit r328100 (0fdf7fa846b1a1b1679e86812a1b08b8cb623604)
removed libxo(3) support from ls(1), so ftpd has no reasons to link
with libxo since then.
ls(1) does not depend on libxo in both of stable/12 and stable/13.
MFC after: 2 weeks
Diffstat (limited to 'libexec/ftpd')
-rw-r--r-- | libexec/ftpd/Makefile | 2 | ||||
-rw-r--r-- | libexec/ftpd/Makefile.depend | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/libexec/ftpd/Makefile b/libexec/ftpd/Makefile index 4d38261b9318..533022c5a033 100644 --- a/libexec/ftpd/Makefile +++ b/libexec/ftpd/Makefile @@ -16,7 +16,7 @@ YFLAGS= WARNS?= 2 WFORMAT=0 -LIBADD= crypt xo util +LIBADD= crypt util # XXX Kluge! Conversation mechanism needs to be fixed. LIBADD+= opie md diff --git a/libexec/ftpd/Makefile.depend b/libexec/ftpd/Makefile.depend index 47871a6b9cf7..148254e533cb 100644 --- a/libexec/ftpd/Makefile.depend +++ b/libexec/ftpd/Makefile.depend @@ -13,7 +13,6 @@ DIRDEPS = \ lib/libopie \ lib/libthr \ lib/libutil \ - lib/libxo \ lib/msun \ usr.bin/yacc.host \ |