summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/oh-autobuild.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/oh-autobuild.sh b/src/oh-autobuild.sh
index 1bfe420..1f24d5c 100644
--- a/src/oh-autobuild.sh
+++ b/src/oh-autobuild.sh
@@ -27,7 +27,7 @@ main()
{
oh_init
- while getopts 'S:B:' opt; do
+ while getopts 'S:B:T:' opt; do
case "${opt}" in
S)
oh_set_buildsystem_option 'build-system' "${OPTARG}"
@@ -35,6 +35,9 @@ main()
B)
oh_set_buildsystem_option 'build-dir' "${OPTARG}"
;;
+ T)
+ oh_set_buildsystem_option 'build-target' "${OPTARG}"
+ ;;
?)
ob_error "$(ob_get_msg 'bad_opt')"
exit 1