Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:4f840a5b0fbc31875d4e77ffda4448c665869c68
Author...:Sami Kerola
Committer:Reuben Thomas
Date.....:Wed Oct 9 20:20:11 2013 +0100
Parents..:8e393d913728cc4c846cd4a6b06975d2eb69f4a2

Message
bootstrap: update from gnulib

* bootstrap: new version will allow use of URL parameter in AC_INIT
macro.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>

Changes
diff --git a/bootstrap b/bootstrap
line changes: +10/-9
index 96f1e76..0cbea66
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Print a version string.
-scriptversion=2013-03-08.16; # UTC
+scriptversion=2013-05-08.20; # UTC
 
 # Bootstrap this package from checked-out sources.
 
@@ -140,20 +140,21 @@ po_download_command_format2=\
 "wget --mirror -nd -q -np -A.po -P '%s' \
  http://translationproject.org/latest/%s/"
 
+# Prefer a non-empty tarname (4th argument of AC_INIT if given), else
+# fall back to the package name (1st argument with munging)
 extract_package_name='
-  /^AC_INIT(/{
-     /.*,.*,.*, */{
-       s///
-       s/[][]//g
-       s/)$//
+  /^AC_INIT(\[*/{
+     s///
+     /^[^,]*,[^,]*,[^,]*,[ []*\([^][ ,)]\)/{
+       s//\1/
+       s/[],)].*//
        p
        q
      }
-     s/AC_INIT(\[*//
-     s/]*,.*//
+     s/[],)].*//
      s/^GNU //
      y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
-     s/[^A-Za-z0-9_]/-/g
+     s/[^abcdefghijklmnopqrstuvwxyz0123456789_]/-/g
      p
   }
 '

This website is licensed under AGPL-3.0. Feel free to copy!