diff options
author | dillo <dillo@pkgsrc.org> | 2005-07-28 15:17:55 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2005-07-28 15:17:55 +0000 |
commit | c9294e90d127f51c0d90c09ba6b49dc3de65e8d3 (patch) | |
tree | 5464f489858f11730a0a55be6ff2bdb9d376b631 | |
parent | d41895da9441ab2c7f8cb16c936ca875a2c0384a (diff) | |
download | pkgsrc-c9294e90d127f51c0d90c09ba6b49dc3de65e8d3.tar.gz |
Fix some more typos, noted by Leonard Schmidt.
-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 |