diff options
author | P. J. McDermott <pjm@nac.net> | 2012-11-14 19:13:18 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-11-14 19:13:18 (EST) |
commit | 4b38a392c80e58d8bdf3865c628727ad446777cf (patch) | |
tree | de0df5b640a63750957c5cc6dcf1ad33a69f4a15 | |
parent | 36b18dbf8d85cc7bed6c15603ed45d50ec78a347 (diff) |
Fix getopts operand in oh-autoconfigure.
-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 004a140..d363278 100644 --- a/src/oh-autoconfigure.sh +++ b/src/oh-autoconfigure.sh @@ -27,7 +27,7 @@ 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}" |