Re: [cp-patches] [RFC/PATCH] Add autogen-generated files to gitignore

2013-03-11 Thread Andrew Hughes
- Original Message -
 On Sat, Mar 09, 2013 at 11:03:22AM +0200, Pekka Enberg wrote:
  Make sure git status does not show up files after autogen.sh has
  been
  run.
  
  Signed-off-by: Pekka Enberg penb...@kernel.org
  ---
   .gitignore |5 +
   ChangeLog  |4 
   2 files changed, 9 insertions(+), 0 deletions(-)
  
  diff --git a/.gitignore b/.gitignore
  index 817e215..1b3d546 100644
  --- a/.gitignore
  +++ b/.gitignore
  @@ -21,3 +21,8 @@ install-sh
   missing
   mkinstalldirs
   INSTALL
  +m4/libtool.m4
  +m4/ltoptions.m4
  +m4/ltsugar.m4
  +m4/ltversion.m4
  +m4/lt~obsolete.m4
 
 This looks fine, these are all libtool files.
 Might it make sense to ignore m4/libtool and m4/lt*m4?
 Or does libtool only ever generate these 5 files?
 
 Thanks,
 
 Mark
 
 

Fine by me.  I've been planning to commit the same, but there's always 
something I'm working on.
-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

PGP Key: 248BDC07 (https://keys.indymedia.org/)
Fingerprint = EC5A 1F5E C0AD 1D15 8F1F  8F91 3B96 A578 248B DC07




Re: [cp-patches] [RFC/PATCH] Add autogen-generated files to gitignore

2013-03-11 Thread Pekka Enberg
On Mon, Mar 11, 2013 at 3:20 PM, Andrew Hughes gnu.and...@redhat.com wrote:
 Fine by me.  I've been planning to commit the same, but there's always 
 something I'm working on.

I merged the variant suggested by Mark. Thanks!



[cp-patches] [RFC/PATCH] Add autogen-generated files to gitignore

2013-03-09 Thread Pekka Enberg
Make sure git status does not show up files after autogen.sh has been
run.

Signed-off-by: Pekka Enberg penb...@kernel.org
---
 .gitignore |5 +
 ChangeLog  |4 
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index 817e215..1b3d546 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,8 @@ install-sh
 missing
 mkinstalldirs
 INSTALL
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
diff --git a/ChangeLog b/ChangeLog
index b08c5af..289a979 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-03-09  Pekka Enberg penb...@kernel.org
+
+   * .gitignore: Exclude autogen-generated files.
+
 2013-03-04  Andrew John Hughes  gnu_and...@member.fsf.org
 
* gnu/classpath/Pair.java:
-- 
1.7.7.6




Re: [cp-patches] [RFC/PATCH] Add autogen-generated files to gitignore

2013-03-09 Thread Mark Wielaard
On Sat, Mar 09, 2013 at 11:03:22AM +0200, Pekka Enberg wrote:
 Make sure git status does not show up files after autogen.sh has been
 run.
 
 Signed-off-by: Pekka Enberg penb...@kernel.org
 ---
  .gitignore |5 +
  ChangeLog  |4 
  2 files changed, 9 insertions(+), 0 deletions(-)
 
 diff --git a/.gitignore b/.gitignore
 index 817e215..1b3d546 100644
 --- a/.gitignore
 +++ b/.gitignore
 @@ -21,3 +21,8 @@ install-sh
  missing
  mkinstalldirs
  INSTALL
 +m4/libtool.m4
 +m4/ltoptions.m4
 +m4/ltsugar.m4
 +m4/ltversion.m4
 +m4/lt~obsolete.m4

This looks fine, these are all libtool files.
Might it make sense to ignore m4/libtool and m4/lt*m4?
Or does libtool only ever generate these 5 files?

Thanks,

Mark