diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-08-23 21:52:24 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-08-23 21:52:24 (EDT) |
commit | 18ad5610e4888ee1114ae9c002834fd47cb0ff94 (patch) | |
tree | 4614e6d65669f89e627ab3e1c247b529572269fe /lib/profiles | |
parent | 238960cc83a0d32e60973f93849d68ff46a2e499 (diff) |
Make field name checks case insensitive
Diffstat (limited to 'lib/profiles')
-rw-r--r-- | lib/profiles/proteanos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/profiles/proteanos.sh b/lib/profiles/proteanos.sh index c6152d9..68b161e 100644 --- a/lib/profiles/proteanos.sh +++ b/lib/profiles/proteanos.sh @@ -160,7 +160,7 @@ prof_proteanos_include_pkg() local name="${1}" local value="${2}" - if [ "x${name}" = 'xPackage' ]; then + if [ "x${name}" = 'xpackage' ]; then case "${value}" in base-files|busybox|libc.6|opkg) return 0 |