diff options
author | agc <agc> | 2003-12-19 10:52:18 +0000 |
---|---|---|
committer | agc <agc> | 2003-12-19 10:52:18 +0000 |
commit | 8483b14e8e4932bdd3f1eb0925747ecf8072a3fd (patch) | |
tree | d6281aeb8d13f5ca88a4caed00a79487dfb6123f /net | |
parent | 62a714cf4b46e71779b037aaceb1f54b8bfeb6af (diff) | |
download | pkgsrc-8483b14e8e4932bdd3f1eb0925747ecf8072a3fd.tar.gz |
It might be better to indent the "if", rather than the ".", so that make(1)
DTRT.
Diffstat (limited to 'net')
-rw-r--r-- | net/tnftp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tnftp/Makefile b/net/tnftp/Makefile index 88a902f85bd..8eb47120668 100644 --- a/net/tnftp/Makefile +++ b/net/tnftp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2003/12/19 09:16:52 agc Exp $ +# $NetBSD: Makefile,v 1.5 2003/12/19 10:52:18 agc Exp $ # DISTNAME= tnftp-20030825 @@ -15,7 +15,7 @@ GNU_CONFIGURE= YES # Include SOCKS firewall support .if defined(USE_SOCKS) && (${USE_SOCKS} == "4" || ${USE_SOCKS} == "5") - .if ${USE_SOCKS} == "4" +. if ${USE_SOCKS} == "4" DEPENDS+= socks4-2.2:../../net/socks4 CONFIGURE_ARGS+= --with-socks4 . else |