From: Jim Meyering Date: Sat, 10 Nov 2007 16:36:55 +0000 (+0100) Subject: bootstrap: fix typo to enable use of $gnulib_tool_option_extras. X-Git-Tag: v6.9.90~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ba3497409071e858a561ca95542291ffb328ab99;p=platform%2Fupstream%2Fcoreutils.git bootstrap: fix typo to enable use of $gnulib_tool_option_extras. * bootstrap (gnulib_tool_options): Add a space before the use of $gnulib_tool_option_extras, so that it's separated from the preceding argument. Signed-off-by: Jim Meyering --- diff --git a/ChangeLog b/ChangeLog index 529c770..e44f790 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-11-09 Jim Meyering + bootstrap: fix typo to enable use of $gnulib_tool_option_extras. + * bootstrap (gnulib_tool_options): Add a space before the use + of $gnulib_tool_option_extras, so that it's separated from the + preceding argument. + install+SELinux: reduce a 12x performance hit to ~1.5x * src/install.c (setdefaultfilecon): Call matchpathcon_init_prefix, to mitigate what would otherwise be a large performance hit due to diff --git a/bootstrap b/bootstrap index 110c77a..1eec10f 100755 --- a/bootstrap +++ b/bootstrap @@ -492,7 +492,7 @@ gnulib_tool_options="\ --source-base $bt/lib/\ --tests-base $bt/tests\ --local-dir $local_gl_dir\ -$gnulib_tool_option_extras\ + $gnulib_tool_option_extras\ " echo "$0: $gnulib_tool $gnulib_tool_options --import ..." $gnulib_tool $gnulib_tool_options --import $gnulib_modules &&