summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoragc <agc>2003-12-19 10:52:18 +0000
committeragc <agc>2003-12-19 10:52:18 +0000
commit8483b14e8e4932bdd3f1eb0925747ecf8072a3fd (patch)
treed6281aeb8d13f5ca88a4caed00a79487dfb6123f
parent62a714cf4b46e71779b037aaceb1f54b8bfeb6af (diff)
downloadpkgsrc-8483b14e8e4932bdd3f1eb0925747ecf8072a3fd.tar.gz
It might be better to indent the "if", rather than the ".", so that make(1)
DTRT.
-rw-r--r--net/tnftp/Makefile4
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