diff options
author | P. J. McDermott <pjm@nac.net> | 2012-11-15 18:19:52 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-11-15 18:19:52 (EST) |
commit | 16dc4eb3f81189e1cb71fdfe777d967783fcc38d (patch) | |
tree | 1f6a554f22e02250f4822dfd5a0331abf977614c /lib | |
parent | fdc69e771a6328752086b2f5c7a5e64936a4e3b6 (diff) |
Fix a return command.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/buildsystem/kbuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/buildsystem/kbuild.sh b/lib/buildsystem/kbuild.sh index 5a1c5d2..362fe05 100644 --- a/lib/buildsystem/kbuild.sh +++ b/lib/buildsystem/kbuild.sh @@ -111,6 +111,6 @@ _oh_kbuild_test_arch() make -n ARCH="${_ohbskta_arch}" help >/dev/null 2>&1 - _ob_return ${?} + _oh_return ${?} return ${?} } |