diff options
author | P. J. McDermott <pjm@nac.net> | 2014-03-06 11:18:15 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-03-06 11:18:15 (EST) |
commit | ed2110fe0d90653e68406bdf62b33287a41b82f4 (patch) | |
tree | 57557adab107258b88ba4704d2bb43ea144fe9d7 /src/oh-autoinstall.sh | |
parent | 779336f52b48317bd08b5e667ee2ddb28f372eaa (diff) |
src/*.sh: Wrap long lines.
Diffstat (limited to 'src/oh-autoinstall.sh')
-rw-r--r-- | src/oh-autoinstall.sh | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/oh-autoinstall.sh b/src/oh-autoinstall.sh index 711e481..702be80 100644 --- a/src/oh-autoinstall.sh +++ b/src/oh-autoinstall.sh @@ -30,19 +30,24 @@ main() while getopts 's:S:B:d:T:' opt; do case "${opt}" in s) - oh_set_buildsystem_option 'source-dir' "${OPTARG}" + oh_set_buildsystem_option 'source-dir' \ + "${OPTARG}" ;; S) - oh_set_buildsystem_option 'build-system' "${OPTARG}" + oh_set_buildsystem_option 'build-system' \ + "${OPTARG}" ;; B) - oh_set_buildsystem_option 'build-dir' "${OPTARG}" + oh_set_buildsystem_option 'build-dir' \ + "${OPTARG}" ;; d) - oh_set_buildsystem_option 'destdir' "${OPTARG}" + oh_set_buildsystem_option 'destdir' \ + "${OPTARG}" ;; T) - oh_set_buildsystem_option 'build-target' "${OPTARG}" + oh_set_buildsystem_option 'build-target' \ + "${OPTARG}" ;; ?) oh_error "$(oh_get_msg 'bad_opt')" |