diff options
author | dillo <dillo> | 2005-07-28 15:17:55 +0000 |
---|---|---|
committer | dillo <dillo> | 2005-07-28 15:17:55 +0000 |
commit | 8ef4f59e22d9319b1b8074e9560f474a9b9ac9f2 (patch) | |
tree | 5464f489858f11730a0a55be6ff2bdb9d376b631 /mk/bsd.options.mk | |
parent | 2e84357ca48039f26943cbbb2dac5f3e2d651204 (diff) | |
download | pkgsrc-8ef4f59e22d9319b1b8074e9560f474a9b9ac9f2.tar.gz |
Fix some more typos, noted by Leonard Schmidt.
Diffstat (limited to 'mk/bsd.options.mk')
-rw-r--r-- | mk/bsd.options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.options.mk b/mk/bsd.options.mk index 4344d7b302b..9a24eefa4b4 100644 --- a/mk/bsd.options.mk +++ b/mk/bsd.options.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.options.mk,v 1.47 2005/07/28 13:22:08 wiz Exp $ +# $NetBSD: bsd.options.mk,v 1.48 2005/07/28 15:17:55 dillo Exp $ # # This Makefile fragment provides boilerplate code for standard naming # conventions for handling per-package build options. @@ -176,7 +176,7 @@ _PKG_OPTIONS_GROUP_MAP.${_opt_}=${_grp_} # _PKG_OPTIONS_ALL_SETS:=#empty .for _set_ in ${PKG_OPTIONS_NONEMPTY_SETS} -. if !defined(PKT_OPTIONS_SET.${_set_}) || empty(PKT_OPTIONS_SET.${_set_}) +. if !defined(PKG_OPTIONS_SET.${_set_}) || empty(PKG_OPTIONS_SET.${_set_}) PKG_FAIL_REASON:="bsd.options.mk: PKG_OPTIONS_SET."${_set_:Q}" must be non-empty." . endif . for _opt_ in ${PKG_OPTIONS_SET.${_set_}} @@ -304,7 +304,7 @@ PKG_OPTIONS:= ${PKG_OPTIONS} ${_opt_} .for _set_ in ${PKG_OPTIONS_NONEMPTY_SETS} _ISEMPTY:=true -. for _opt_ in ${PKG_OPTIONS_SET.${_set_} +. for _opt_ in ${PKG_OPTIONS_SET.${_set_}} . if !empty(PKG_OPTIONS:M${_opt_}) _ISEMPTY:=false . endif |