diff options
author | wiz <wiz@pkgsrc.org> | 2006-02-07 18:16:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-02-07 18:16:18 +0000 |
commit | a70acf431b5121f0a5d816866816ba3cc1501967 (patch) | |
tree | b0adbe13ae477549eee5be9dfba117f32ce4df1d /devel/SDL | |
parent | f9403f57e90c096f8d5013881bfdaf6ec3d4f36e (diff) | |
download | pkgsrc-a70acf431b5121f0a5d816866816ba3cc1501967.tar.gz |
Fix a pkglint warning.
Diffstat (limited to 'devel/SDL')
-rw-r--r-- | devel/SDL/Makefile.common | 8 |
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 |