* [PATCH] xfsprogs: add .ltdep to .gitignore
@ 2011-11-09 19:03 Ben Myers
2011-11-09 20:17 ` Alain Renaud
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ben Myers @ 2011-11-09 19:03 UTC (permalink / raw)
To: xfs; +Cc: bpm, aelder, arenaud
Make git ignore all .ltdep files which are created as part of the build
process.
~/xfsprogs # find | grep ltdep
./libxcmd/.ltdep
./libxfs/.ltdep
./libhandle/.ltdep
./libdisk/.ltdep
./libxlog/.ltdep
Signed-off-by: Ben Myers <bpm@sgi.com>
---
.gitignore | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index aa6cd35..22b4f65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
# object files
*.o
.dep
+.ltdep
# build system
.census
--
1.7.8.rc0.46.g5ae0f
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] xfsprogs: add .ltdep to .gitignore
2011-11-09 19:03 [PATCH] xfsprogs: add .ltdep to .gitignore Ben Myers
@ 2011-11-09 20:17 ` Alain Renaud
2011-11-09 22:37 ` Dave Chinner
2011-11-10 11:11 ` Christoph Hellwig
2 siblings, 0 replies; 5+ messages in thread
From: Alain Renaud @ 2011-11-09 20:17 UTC (permalink / raw)
To: xfs
The change look good
Reviewed-by: Alain Renaud<arenaud@sgi.com>
On 11-11-09 02:03 PM, Ben Myers wrote:
> Make git ignore all .ltdep files which are created as part of the build
> process.
>
> ~/xfsprogs # find | grep ltdep
> ./libxcmd/.ltdep
> ./libxfs/.ltdep
> ./libhandle/.ltdep
> ./libdisk/.ltdep
> ./libxlog/.ltdep
>
> Signed-off-by: Ben Myers<bpm@sgi.com>
> ---
> .gitignore | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/.gitignore b/.gitignore
> index aa6cd35..22b4f65 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -1,6 +1,7 @@
> # object files
> *.o
> .dep
> +.ltdep
>
> # build system
> .census
--
===============================================
Alain Renaud - Cluster File System Engineer
arenaud@sgi.com - SGI
===============================================
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] xfsprogs: add .ltdep to .gitignore
2011-11-09 19:03 [PATCH] xfsprogs: add .ltdep to .gitignore Ben Myers
2011-11-09 20:17 ` Alain Renaud
@ 2011-11-09 22:37 ` Dave Chinner
2011-11-10 16:25 ` Ben Myers
2011-11-10 11:11 ` Christoph Hellwig
2 siblings, 1 reply; 5+ messages in thread
From: Dave Chinner @ 2011-11-09 22:37 UTC (permalink / raw)
To: Ben Myers; +Cc: aelder, arenaud, xfs
On Wed, Nov 09, 2011 at 01:03:58PM -0600, Ben Myers wrote:
> Make git ignore all .ltdep files which are created as part of the build
> process.
>
> ~/xfsprogs # find | grep ltdep
> ./libxcmd/.ltdep
> ./libxfs/.ltdep
> ./libhandle/.ltdep
> ./libdisk/.ltdep
> ./libxlog/.ltdep
>
> Signed-off-by: Ben Myers <bpm@sgi.com>
The same changes are needed for the xfstests and xfsdump packages,
right? Regardless, this change is good.
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] xfsprogs: add .ltdep to .gitignore
2011-11-09 22:37 ` Dave Chinner
@ 2011-11-10 16:25 ` Ben Myers
0 siblings, 0 replies; 5+ messages in thread
From: Ben Myers @ 2011-11-10 16:25 UTC (permalink / raw)
To: Dave Chinner; +Cc: xfs, arenaud, aelder
Hi Dave,
On Thu, Nov 10, 2011 at 09:37:35AM +1100, Dave Chinner wrote:
> On Wed, Nov 09, 2011 at 01:03:58PM -0600, Ben Myers wrote:
> > Make git ignore all .ltdep files which are created as part of the build
> > process.
> >
> > ~/xfsprogs # find | grep ltdep
> > ./libxcmd/.ltdep
> > ./libxfs/.ltdep
> > ./libhandle/.ltdep
> > ./libdisk/.ltdep
> > ./libxlog/.ltdep
> >
> > Signed-off-by: Ben Myers <bpm@sgi.com>
>
> The same changes are needed for the xfstests and xfsdump packages,
> right? Regardless, this change is good.
Yep, it looks like there are a few things we can add to .gitignore in
xfstests. Bill Kendall may have already resolved them in xfsdump.
I'll take a peek.
THanks,
Ben
> Reviewed-by: Dave Chinner <dchinner@redhat.com>
>
> Cheers,
>
> Dave.
> --
> Dave Chinner
> david@fromorbit.com
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] xfsprogs: add .ltdep to .gitignore
2011-11-09 19:03 [PATCH] xfsprogs: add .ltdep to .gitignore Ben Myers
2011-11-09 20:17 ` Alain Renaud
2011-11-09 22:37 ` Dave Chinner
@ 2011-11-10 11:11 ` Christoph Hellwig
2 siblings, 0 replies; 5+ messages in thread
From: Christoph Hellwig @ 2011-11-10 11:11 UTC (permalink / raw)
To: Ben Myers; +Cc: aelder, arenaud, xfs
Thanks a lot, I've put it in.
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-11-10 16:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-09 19:03 [PATCH] xfsprogs: add .ltdep to .gitignore Ben Myers
2011-11-09 20:17 ` Alain Renaud
2011-11-09 22:37 ` Dave Chinner
2011-11-10 16:25 ` Ben Myers
2011-11-10 11:11 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox