- Fix a long-standing latent bug in libtoolize which could delete lines
from libltdl/Makefile.am in recursive mode due to underquoting in a
sed script.
+ - The libtoolize subproject mode selector is now named `--subproject'
+ and is equivalent to the implied `--subproject' mode when no other
+ mode is selected; `--standalone' never worked, and is no longer
+ accepted.
New in 2.4.2 2011-10-17: git version 2.4.1a, Libtool team:
[], [--no-warning|--no-warn], [], [],
[], [--nonrecursive|--non-recursive], [], [],
[], [--recursive], [], [],
- [], [--standalone], [], [],
+ [], [--subproject], [], [],
[?], [--ltdl], [false], [
# This is tricky, since we're overloading $opt_ltdl to be the
# optarg for --ltdl during option processing, but then stashing
test -n "$env_warning" &&
echo "$env_warning" |while read line; do func_warning "$line"; done
- # validate $opt_nonrecursive, $opt_recursive and $opt_standalone
+ # validate $opt_nonrecursive, $opt_recursive and $ot_subproject
if $opt_nonrecursive; then
- if $opt_recursive || $opt_standalone; then
- func_error "you can have at most one of --non-recursive, --recursive and --standalone"
+ if $opt_recursive || $opt_subproject; then
+ func_error "you can have at most one of --non-recursive, --recursive and --subproject"
fi
ltdl_mode=nonrecursive
elif $opt_recursive; then
- $opt_standalone &&
- func_error "you can have at most one of --non-recursive, --recursive and --standalone"
+ $opt_subproject &&
+ func_error "you can have at most one of --non-recursive, --recursive and --subproject"
ltdl_mode=recursive
- elif $opt_standalone; then
- ltdl_mode=standalone
+ elif $opt_subproject; then
+ ltdl_mode=subproject
fi
# any remaining arguments are an error