libtool-patches
[Top][All Lists]
Advanced

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

Re: bootstrap warning


From: Eric Blake
Subject: Re: bootstrap warning
Date: Wed, 26 Oct 2005 06:55:11 -0600
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

According to Eric Blake on 10/26/2005 6:46 AM:
> 
> 2005-10-26  Eric Blake  <address@hidden>
> 
>       * Makefile.am (vcl-tmp): Avoid warnings from diff.
>       * bootstrap: Avoid warnings from find.
> 

It would help if I actually attached the patch :-/

Also, emacs whitespace-cleanup doesn't like the fact that bootstrap has
space followed by a literal tab in my_sed_traces; and it tried to 'help'
me by flattening that into a single tab (of course, changing the sed
expression in the process).  Is it safe to use \t instead of literal tab
in a sed expression?

- --
Life is short - so eat dessert first!

Eric Blake             address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDX3yu84KuGfSFAYARAlL5AKCSZQPzv8ZOqkP9zYD1CVWU0eSHXgCfeEMz
komn6T+pXSVaLHgDLUB2ju8=
=9zcs
-----END PGP SIGNATURE-----
Index: bootstrap
===================================================================
RCS file: /cvsroot/libtool/libtool/bootstrap,v
retrieving revision 1.71
diff -u -p -b -r1.71 bootstrap
--- bootstrap   26 Oct 2005 10:42:03 -0000      1.71
+++ bootstrap   26 Oct 2005 12:50:39 -0000
@@ -65,7 +65,7 @@ WARNING: them with all m4 file as shippe
 WARNING: `lt~obsolete.m4').  After that, retry this bootstrap.
 EOF
 
-find . \( -name autom4te.cache -o -name libtool \) -depth -print \
+find . -depth \( -name autom4te.cache -o -name libtool \) -print \
   | grep -v '{arch}' \
   | xargs rm -rf
 
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libtool/libtool/Makefile.am,v
retrieving revision 1.173
diff -u -p -b -r1.173 Makefile.am
--- Makefile.am 26 Oct 2005 10:42:02 -0000      1.173
+++ Makefile.am 26 Oct 2005 12:50:39 -0000
@@ -138,7 +138,7 @@ $(srcdir)/stamp-vcl: vcl-tmp clean-ltmai
 vcl-tmp:
        @set dummy `$(MKSTAMP) < $(srcdir)/ChangeLog`; shift; \
        echo "$$1" > vcl.tmp; \
-       diff vcl.tmp $(srcdir)/stamp-vcl >/dev/null \
+       diff vcl.tmp $(srcdir)/stamp-vcl >/dev/null 2>/dev/null \
          || (echo "Updating stamp-vcl"; cp vcl.tmp $(srcdir)/stamp-vcl)
        address@hidden -f vcl.tmp
 

reply via email to

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