pop3

Tiny pop3 client designed to be tunneled through ssh
git clone git://jacobedwards.org/pop3
Log | Files | Refs

commit 98101ebd1a3f11c59513abfe3af1ff56c19576ec
parent 87016f16033ef66dd4b13ee44262d843a326df76
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Sun, 14 May 2023 06:09:51 +0000

Fix manprefix being undefined

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 2023/05/14 02:46:17 jacob Exp $ +# $Id: Makefile,v 1.3 2023/05/14 06:09:51 jacob Exp $ name = pop3 src = pop3.c @@ -11,7 +11,7 @@ obj = ${src:.c=.o} .endif .if MANPREFIX - prefix = ${MANPREFIX} + manprefix = ${MANPREFIX} .else manprefix = ${prefix}/man .endif