diff options
author | P. J. McDermott <pjm@nac.net> | 2012-11-08 23:18:43 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-11-08 23:45:18 (EST) |
commit | e1f1b3a7e9e0afbc640dede5d2ce1910767927fb (patch) | |
tree | d35463507dbdacd8a82b12fb525c0ddfbcffd2a6 /src/oh-autotest.sh | |
parent | 8c6b9a513101ed62c8cff682f35b1cf752a69818 (diff) |
Split oh_buildsystem_do() & oh_buildsystem_find().
Diffstat (limited to 'src/oh-autotest.sh')
-rw-r--r-- | src/oh-autotest.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/oh-autotest.sh b/src/oh-autotest.sh index 7176c08..db5ffff 100644 --- a/src/oh-autotest.sh +++ b/src/oh-autotest.sh @@ -45,7 +45,9 @@ main() oh_buildsystems_init - oh_buildsystem_do 'test' "${@}" + if sys="$(oh_buildsystem_find 'test')"; then + oh_buildsystem_do 'test' "${sys}" "${@}" + fi } main "${@}" |