]> Dogcows Code - chaz/tar/blobdiff - bootstrap
(open_compressed_archive): Do not attemt to determine compression type if handling...
[chaz/tar] / bootstrap
index c767442c0ccd58eae83851991608f925cec135cf..dac36e7d079cb160f98d8281baf3c316bdf2128a 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -67,12 +67,13 @@ update_po() {
     *)     POFILE=${1}.po;;
     esac       
     echo "$0: getting translation for $1..."
-    wget -C off $TP_URL/$POFILE
+    wget -r -C off $TP_URL/$POFILE
   else
     echo "$0: getting translations into po..."
     (cd po &&
      rm -f dummy `ls | sed -n '/\.gmo$/p; /\.po/p'` &&
       wget -nv -nd -r -l 1 -A .po -C off $TP_URL &&
+      rm -f index.html index.html.[0-9]*
       ls *.po | sed 's/\.po$//' >LINGUAS
     ) || exit
   fi
@@ -191,6 +192,7 @@ gettime
 hash
 human
 lchown
+localcharset
 memset
 modechange
 obstack
@@ -216,11 +218,13 @@ xstrtoumax
 previous_gnulib_modules=
 while [ "$gnulib_modules" != "$previous_gnulib_modules" ]; do
   previous_gnulib_modules=$gnulib_modules
+  # In gnulib `alloca-opt' duplicates `alloca', so make sure not
+  # to use it.
   gnulib_modules=`
     (echo "$gnulib_modules"
      for gnulib_module in $gnulib_modules; do
        $GNULIB_SRCDIR/gnulib-tool --extract-dependencies $gnulib_module
-     done) | sort -u
+     done) | sed 's/alloca-opt/alloca/' | sort -u
   `
 done
 
@@ -304,6 +308,8 @@ copy_files ${PAXUTILS_SRCDIR}/rmt rmt
 
 copy_files ${PAXUTILS_SRCDIR}/lib lib
 
+copy_files ${PAXUTILS_SRCDIR}/tests tests
+
 # Get translations.
 if test "$DOWNLOAD_PO" = "yes"; then
   update_po
This page took 0.02077 seconds and 4 git commands to generate.