From: Gary V. Vaughan Date: Fri, 23 Aug 2013 13:28:25 +0000 (+0700) Subject: bootstrap: support --no-git and --no-po options. X-Git-Tag: v2.4.2.418~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5d20a6dbcc867cec4bcd31f91ed52c71e4da36b;p=thirdparty%2Flibtool.git bootstrap: support --no-git and --no-po options. * gl/build-aux/bootstrap.in (bootstrap_parse_options): Accept --no-git as an alias for --skip-git for compatibility with gnulib bootstrap, and --no-po for symmetry. Reported by Mike Miller. Signed-off-by: Gary V. Vaughan --- diff --git a/bootstrap b/bootstrap index cffb1101c..409d387b7 100755 --- a/bootstrap +++ b/bootstrap @@ -4750,8 +4750,13 @@ bootstrap_parse_options () shift ;; - --skip-git) opt_skip_git=: ;; - --skip-po) opt_skip_po=: ;; + --skip-git|--no-git) + opt_skip_git=: + ;; + + --skip-po|--no-po) + opt_skip_po=: + ;; # Separate non-argument short options: -c*|-f*|-n*) diff --git a/gl/build-aux/bootstrap.in b/gl/build-aux/bootstrap.in index fe7f383e7..b364cc750 100755 --- a/gl/build-aux/bootstrap.in +++ b/gl/build-aux/bootstrap.in @@ -2560,8 +2560,13 @@ bootstrap_parse_options () shift ;; - --skip-git) opt_skip_git=: ;; - --skip-po) opt_skip_po=: ;; + --skip-git|--no-git) + opt_skip_git=: + ;; + + --skip-po|--no-po) + opt_skip_po=: + ;; # Separate non-argument short options: -c*|-f*|-n*)