X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=bootstrap;h=d113f5a0ff19aa064c2c44f84ebe1a1f99fd5abf;hb=b272b3e2cfa0090936bc21361e2ef46878b14190;hp=affe7a9a324a0802eb445c343669c5c2dca77f95;hpb=8f1f0955cfa40865240adb3e3689624b63449aaf;p=chaz%2Ftar diff --git a/bootstrap b/bootstrap index affe7a9..d113f5a 100755 --- 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