bug-tar
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-tar] bootstrap patch


From: Marco Gerards
Subject: [Bug-tar] bootstrap patch
Date: 20 Jan 2004 22:30:24 +0100
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

Hi,

A while ago I sent in a patch for bootstrap, but it has not arrived
yet.  Anyway, please ignore that mail because this new patch includes
an URL update, without it the script will not work correctly.

I also have a problem with ./configure.  It shows the error:

config.status: error: cannot find input file: po/Makefile.in.in

As you can see here there is no po/Makefile.in (And where does that
second .in come from?).

http://savannah.gnu.org/cgi-bin/viewcvs/tar/tar/po/

In configure.ac the po/Makefile.in is mentioned.  Perhaps I just made
a mistake, I must admit I'm not using the right versions of autoconf,
automake, etc.  This just appeared as a problem with tar to me so I'm
asking before upgrading (which would be quite some work ATM).

Thanks,
Marco

2004-01-19  Marco Gerards  <address@hidden>

        * bootstrap: Use $option instead of $1 so all options will be
        parsed.  Update the URL of the site that holds the po files.

Index: bootstrap
===================================================================
RCS file: /cvsroot/tar/tar/bootstrap,v
retrieving revision 1.9
diff -u -p -r1.9 bootstrap
--- bootstrap   3 Jan 2004 22:22:01 -0000       1.9
+++ bootstrap   20 Jan 2004 21:06:54 -0000
@@ -32,11 +32,11 @@ do
     echo "$0: usage: $0 
[--gnulib-srcdir=DIR][--cvs-auth=AUTH-METHOD][--cvs-user=USERNAME]"
     exit;;
   --gnulib-srcdir=*)
-    GNULIB_SRCDIR=`expr "$1" : '--gnulib-srcdir=\(.*\)'`;;
+    GNULIB_SRCDIR=`expr "$option" : '--gnulib-srcdir=\(.*\)'`;;
   --cvs-auth=*)
-    CVS_AUTH=`expr "$1" : '--cvs-auth=\(.*\)'`;;
+    CVS_AUTH=`expr "$option" : '--cvs-auth=\(.*\)'`;;
   --cvs-user=*)
-    CVS_USER=`expr "$1" : '--cvs-user=\(.*\)'`;;
+    CVS_USER=`expr "$option" : '--cvs-user=\(.*\)'`;;
   --no-po)
     DOWNLOAD_PO=no;;
   *)
@@ -172,7 +172,7 @@ if test "$DOWNLOAD_PO" = "yes"; then
   (cd po &&
    rm -f dummy `ls | sed -n '/\.gmo$/p; /\.po/p'` &&
     wget -nv -nd -r -l 1 -A .po -C off \
-    http://www.iro.umontreal.ca/contrib/po/maint/tar/ &&
+    http://www2.iro.umontreal.ca/%7Egnutra/po/maint/tar/ &&
     ls *.po | sed 's/\.po$//' >LINGUAS
   ) || exit
 fi





reply via email to

[Prev in Thread] Current Thread [Next in Thread]