diff options
author | Stanislav Malyshev <stas@php.net> | 2013-06-10 14:20:18 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-06-10 14:20:18 -0700 |
commit | ac40c0b562b0f90652cadef83968d7305626c377 (patch) | |
tree | 450cd9d7b67422adfae2218a69d21fb02f921474 /build | |
parent | 04145dc2aa6eea37f7cd27ffa69ad3b2f52a65da (diff) | |
download | php-git-ac40c0b562b0f90652cadef83968d7305626c377.tar.gz |
Merge branch 'pull-request/341'
* pull-request/341: (23 commits)
typofixes
Diffstat (limited to 'build')
-rwxr-xr-x | build/shtool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/shtool b/build/shtool index d50aa1dbb8..684a01f5df 100755 --- a/build/shtool +++ b/build/shtool @@ -376,11 +376,11 @@ while [ $# -gt 0 ]; do eval "opt_${opt_OPT}=yes" ;; ':' ) - # option with argument (multiple occurances override) + # option with argument (multiple occurrences override) eval "opt_${opt_OPT}=\"\$opt_ARG\"" ;; '+' ) - # option with argument (multiple occurances append) + # option with argument (multiple occurrences append) eval "opt_${opt_OPT}=\"\$opt_${opt_OPT}\${ASC_NL}\$opt_ARG\"" ;; * ) |