summaryrefslogtreecommitdiff
path: root/bootstrap.conf
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.conf')
-rw-r--r--bootstrap.conf40
1 files changed, 20 insertions, 20 deletions
diff --git a/bootstrap.conf b/bootstrap.conf
index 6f0f0c3c..c3491b5b 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -77,13 +77,13 @@ gnulib_modules='
# Extra gnulib files that are not in modules, which override files of
# the same name installed by other bootstrap tools.
-gnulib_non_module_files="$gnulib_non_module_files"'
+gnulib_non_module_files=$gnulib_non_module_files'
doc/COPYINGv2
doc/fdl.texi
'
# What ignore files to maintain.
-vc_ignore=".gitignore"
+vc_ignore=.gitignore
# Running the installed `libtoolize' will trash the local (newer) libtool.m4
# among others. Don't use `:', since autoreconf can't exec it!
@@ -128,10 +128,10 @@ func_reconfigure ()
# Also bootstrap any additional directories that were specified with
# `reconfdirs' in the environment.
- save_IFS="$IFS"
+ save_IFS=$IFS
IFS=,
for sub in $opt_reconf_dirs; do
- IFS="$save_IFS"
+ IFS=$save_IFS
my_autoreconf_options=
$opt_copy || func_append my_autoreconf_options " --symlink"
$opt_force && func_append my_autoreconf_options " --force"
@@ -139,7 +139,7 @@ func_reconfigure ()
func_show_eval "$AUTORECONF$my_autoreconf_options --install $sub" \
'exit $?'
done
- IFS="$save_IFS"
+ IFS=$save_IFS
}
@@ -164,7 +164,7 @@ libtool_options_prep ()
$debug_cmd
# Extend the existing usage message
- usage_message="$usage_message"'
+ usage_message=$usage_message'
Libtool Specific Options:
-r, --reconf-dirs=DIR1,DIR2,...
limit the directories to be bootstrapped to
@@ -177,7 +177,7 @@ Libtool Specific Options:
# pass back the list of options we consumed
func_quote_for_eval ${1+"$@"}
- libtool_options_prep_result="$func_quote_for_eval_result"
+ libtool_options_prep_result=$func_quote_for_eval_result
}
func_add_hook func_options_prep libtool_options_prep
@@ -192,7 +192,7 @@ libtool_parse_options ()
# this inner loop lets us handle `-r.' in a single iteration
while test $# -gt 0; do
- opt="$1"
+ opt=$1
shift
case $opt in
@@ -215,7 +215,7 @@ libtool_parse_options ()
# pass back the list of options we consumed
func_quote_for_eval ${1+"$@"}
- libtool_parse_options_result="$func_quote_for_eval_result"
+ libtool_parse_options_result=$func_quote_for_eval_result
}
func_add_hook func_parse_options libtool_parse_options
@@ -231,20 +231,20 @@ libtool_validate_options ()
|| opt_reconf_dirs=`echo $reconfdirs |$SED 's| *|,|g'`
# validate $opt_reconf_dirs
- save_IFS="$IFS"
+ save_IFS=$IFS
IFS=,
for reconfdir in $opt_reconf_dirs; do
- IFS="$save_IFS"
+ IFS=$save_IFS
test -d "$reconfdir" || {
func_error "bad reconf directory \`$reconfdir': directory does not exist"
exit_cmd=exit
}
done
- IFS="$save_IFS"
+ IFS=$save_IFS
# pass back the list of options we consumed
func_quote_for_eval ${1+"$@"}
- libtool_validate_options_result="$func_quote_for_eval_result"
+ libtool_validate_options_result=$func_quote_for_eval_result
}
func_add_hook func_validate_options libtool_validate_options
@@ -302,13 +302,13 @@ libtool_build_prerequisites ()
func_extract_trace LT_CONFIG_LTDL_DIR
- save_ifs="$IFS"
+ save_ifs=$IFS
IFS=:
set dummy $func_extract_trace_result
- IFS="$save_ifs"
+ IFS=$save_ifs
shift
- ltdl_dir="$1"
+ ltdl_dir=$1
func_check_configuration ltdl_dir \
"LT_CONFIG_LTDL_DIR([name of your libltdl directory])"
func_verbose "ltdl_dir='$ltdl_dir'"
@@ -421,7 +421,7 @@ libtool_cleanup_empty_dirs ()
{
$debug_cmd
- my_gnulib_source="${source_base-lib}"
+ my_gnulib_source=${source_base-'lib'}
if test -d "$my_gnulib_source"; then
rm -f "$my_gnulib_source/.gitignore" "$my_gnulib_source/Makefile.am" || exit 1
rmdir "$my_gnulib_source" || exit 1
@@ -445,13 +445,13 @@ libtool_require_package_url ()
func_extract_trace AC_INIT
- save_IFS="$IFS"
+ save_IFS=$IFS
IFS=:
set dummy $func_extract_trace_result
- IFS="$save_IFS"
+ IFS=$save_IFS
shift
- test -n "$package_url " || package_url="$5"
+ test -n "$package_url " || package_url=$5
test -n "$package_url" || {
# How to extract the parameters for `make bootstrap-deps' from
# configure.ac. This is very specific to the way Libtool's