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-autoconfigure.sh | |
parent | 8c6b9a513101ed62c8cff682f35b1cf752a69818 (diff) |
Split oh_buildsystem_do() & oh_buildsystem_find().
Diffstat (limited to 'src/oh-autoconfigure.sh')
-rw-r--r-- | src/oh-autoconfigure.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/oh-autoconfigure.sh b/src/oh-autoconfigure.sh index 6c524da..b56ac55 100644 --- a/src/oh-autoconfigure.sh +++ b/src/oh-autoconfigure.sh @@ -48,7 +48,9 @@ main() oh_buildsystems_init - oh_buildsystem_do 'configure' "${@}" + if sys="$(oh_buildsystem_find 'configure')"; then + oh_buildsystem_do 'configure' "${sys}" "${@}" + fi } main "${@}" |