diff options
author | P. J. McDermott <pjm@nac.net> | 2012-11-08 01:02:29 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-11-08 01:02:29 (EST) |
commit | 782bcd811319a3cb10f024a4c21476d8e489de45 (patch) | |
tree | 89bccce7ec7e2c0705197de8bcabf06012983ae6 /src | |
parent | 83d6a78f143b64558c01b83b6fcbce3e8a508b6f (diff) |
Fix getopts operand in oh-autoconfigure.
Diffstat (limited to 'src')
-rw-r--r-- | src/oh-autoconfigure.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oh-autoconfigure.sh b/src/oh-autoconfigure.sh index fb0b231..6c524da 100644 --- a/src/oh-autoconfigure.sh +++ b/src/oh-autoconfigure.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}" |