summaryrefslogtreecommitdiff
path: root/devel/SDL
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-02-07 18:16:18 +0000
committerwiz <wiz@pkgsrc.org>2006-02-07 18:16:18 +0000
commita70acf431b5121f0a5d816866816ba3cc1501967 (patch)
treeb0adbe13ae477549eee5be9dfba117f32ce4df1d /devel/SDL
parentf9403f57e90c096f8d5013881bfdaf6ec3d4f36e (diff)
downloadpkgsrc-a70acf431b5121f0a5d816866816ba3cc1501967.tar.gz
Fix a pkglint warning.
Diffstat (limited to 'devel/SDL')
-rw-r--r--devel/SDL/Makefile.common8
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/SDL/Makefile.common b/devel/SDL/Makefile.common
index c8cc51a6393..e05e90516e2 100644
--- a/devel/SDL/Makefile.common
+++ b/devel/SDL/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.25 2005/12/11 09:40:38 wiz Exp $
+# $NetBSD: Makefile.common,v 1.26 2006/02/07 18:16:18 wiz Exp $
DISTNAME= SDL-1.2.9
CATEGORIES= devel games
@@ -45,9 +45,9 @@ CONFIGURE_ENV+= SYSTEM_LIBS=${LDFLAGS:M*:Q}
# on Darwin if they exist.
.if ${OPSYS} == "Darwin"
COCOA_DIRS+= /System /Library /Developer
-. for _dir_ in ${COCOA_DIRS}
-. if exists(${_dir_})
-BUILDLINK_PASSTHRU_DIRS+= ${_dir_}
+. for dir in ${COCOA_DIRS}
+. if exists(${dir})
+BUILDLINK_PASSTHRU_DIRS+= ${dir}
. endif
. endfor
.endif