diff options
author | P. J. McDermott <pjm@nac.net> | 2012-10-22 02:15:53 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-10-22 02:15:53 (EDT) |
commit | 3b054ee49a57d73d454e45a325ec1d34f89ae9cc (patch) | |
tree | 74037867663c788ec90b3626c8c86c4fc3a8471d /lib | |
parent | c9c9e4ef77e86ce3444954cf87f600cbe4913634 (diff) |
Fix var name in oh_set_buildsystem_option().
Diffstat (limited to 'lib')
-rw-r--r-- | lib/buildsystem.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/buildsystem.sh b/lib/buildsystem.sh index 047b553..6d3aa03 100644 --- a/lib/buildsystem.sh +++ b/lib/buildsystem.sh @@ -53,10 +53,10 @@ oh_set_buildsystem_option() case "${_ohsbso_name}" in 'build-dir') - _OH_BUILDSYSTEM_BUILD_DIR="${value}" + _OH_BUILDSYSTEM_BUILD_DIR="${_ohsbso_value}" ;; 'build-system') - _OH_BUILDSYSTEM_SYSTEM="${value}" + _OH_BUILDSYSTEM_SYSTEM="${_ohsbso_value}" ;; *) _oh_return 125 |