]> Dogcows Code - chaz/tar/commitdiff
If file `.bootstrap' exists in the cwd and is readable, prepend its contents to the...
authorSergey Poznyakoff <gray@gnu.org.ua>
Fri, 28 Oct 2005 09:29:16 +0000 (09:29 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Fri, 28 Oct 2005 09:29:16 +0000 (09:29 +0000)
bootstrap

index affe7a9a324a0802eb445c343669c5c2dca77f95..d113f5a0ff19aa064c2c44f84ebe1a1f99fd5abf 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -52,6 +52,10 @@ usage() {
  --no-po                      Do not download po files.
  --update-po[=LANG]           Update po file(s) and exit.
 
+If the file `.bootstrap' exists in the current working directory, its
+contents is read, comments and empty lines removed, shell variables expanded
+and the result is prepended to the command line options.
+
 Running without arguments will suffice in most cases. It is equivalent
 to
 
@@ -79,6 +83,12 @@ update_po() {
   fi
 }
 
+# Read configuration file
+if [ -r .bootstrap ]; then
+  echo "$0: Reading configuration file .bootstrap"
+  eval set -- "`sed 's/#.*$//;/^$/d' .bootstrap | tr '\n' ' '` $*"
+fi
+
 # Parse options.
 
 DOWNLOAD_PO=yes
This page took 0.023299 seconds and 4 git commands to generate.