]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
bootstrap: support --no-git and --no-po options.
authorGary V. Vaughan <gary@gnu.org>
Fri, 23 Aug 2013 13:28:25 +0000 (20:28 +0700)
committerGary V. Vaughan <gary@gnu.org>
Fri, 23 Aug 2013 13:28:25 +0000 (20:28 +0700)
* 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 <gary@gnu.org>
bootstrap
gl/build-aux/bootstrap.in

index cffb1101c7091ed41d18a0027d83617c1856f11d..409d387b74088e15ed08f162a497fbc982fa6c14 100755 (executable)
--- 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*)
index fe7f383e7e7548f87ae280a539730f9d08badcf8..b364cc7509a2da72e935612dce2bcaaa3e3fc6f1 100755 (executable)
@@ -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*)