From e80c8fcf62eea81a237c86f292e26f9e58b068b9 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 14 Nov 2012 19:28:00 -0500 Subject: Support -s in oh-auto{build,clean,install}. --- (limited to 'src') diff --git a/src/oh-autobuild.sh b/src/oh-autobuild.sh index 366fa09..3bf2026 100644 --- a/src/oh-autobuild.sh +++ b/src/oh-autobuild.sh @@ -27,8 +27,11 @@ main() { oh_init - while getopts 'S:B:T:' opt; do + while getopts 's:S:B:T:' opt; do case "${opt}" in + s) + oh_set_buildsystem_option 'source-dir' "${OPTARG}" + ;; S) oh_set_buildsystem_option 'build-system' "${OPTARG}" ;; diff --git a/src/oh-autoclean.sh b/src/oh-autoclean.sh index 44c99b6..f12815b 100644 --- a/src/oh-autoclean.sh +++ b/src/oh-autoclean.sh @@ -27,8 +27,11 @@ main() { oh_init - while getopts 'S:B:' opt; do + while getopts 's:S:B:' opt; do case "${opt}" in + s) + oh_set_buildsystem_option 'source-dir' "${OPTARG}" + ;; S) oh_set_buildsystem_option 'build-system' "${OPTARG}" ;; diff --git a/src/oh-autoinstall.sh b/src/oh-autoinstall.sh index 761bd03..bd4476a 100644 --- a/src/oh-autoinstall.sh +++ b/src/oh-autoinstall.sh @@ -27,8 +27,11 @@ main() { oh_init - while getopts 'S:B:d:T:' opt; do + while getopts 's:S:B:d:T:' opt; do case "${opt}" in + s) + oh_set_buildsystem_option 'source-dir' "${OPTARG}" + ;; S) oh_set_buildsystem_option 'build-system' "${OPTARG}" ;; -- cgit v0.9.1