diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-24 21:13:53 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-24 21:13:53 (EST) |
commit | e25fdc3b7909b278b157e19d4e25d5502d3d331a (patch) | |
tree | 91143e33b11958d5dd54c89d38812f5a04079f60 | |
parent | 9fe66e9412a3313aa8b71ac8e5c36e776a734e81 (diff) |
src/oh-auto*.sh: Use new output functions.
-rw-r--r-- | src/oh-autobuild.sh | 2 | ||||
-rw-r--r-- | src/oh-autoclean.sh | 2 | ||||
-rw-r--r-- | src/oh-autoconfigure.sh | 2 | ||||
-rw-r--r-- | src/oh-autoinstall.sh | 2 | ||||
-rw-r--r-- | src/oh-autotest.sh | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/oh-autobuild.sh b/src/oh-autobuild.sh index c85dd0f..84aed92 100644 --- a/src/oh-autobuild.sh +++ b/src/oh-autobuild.sh @@ -42,7 +42,7 @@ main() oh_set_buildsystem_option 'build-target' "${OPTARG}" ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autoclean.sh b/src/oh-autoclean.sh index cf9c8d3..1545153 100644 --- a/src/oh-autoclean.sh +++ b/src/oh-autoclean.sh @@ -39,7 +39,7 @@ main() oh_set_buildsystem_option 'build-dir' "${OPTARG}" ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autoconfigure.sh b/src/oh-autoconfigure.sh index 3e37228..95cdaa5 100644 --- a/src/oh-autoconfigure.sh +++ b/src/oh-autoconfigure.sh @@ -42,7 +42,7 @@ main() oh_set_buildsystem_option 'target-arch' "${OPTARG}" ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autoinstall.sh b/src/oh-autoinstall.sh index efe8500..0bf9633 100644 --- a/src/oh-autoinstall.sh +++ b/src/oh-autoinstall.sh @@ -45,7 +45,7 @@ main() oh_set_buildsystem_option 'build-target' "${OPTARG}" ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac diff --git a/src/oh-autotest.sh b/src/oh-autotest.sh index aff0999..f44fc17 100644 --- a/src/oh-autotest.sh +++ b/src/oh-autotest.sh @@ -36,7 +36,7 @@ main() oh_set_buildsystem_option 'build-dir' "${OPTARG}" ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac |