* missing files in bk trees?
@ 2004-03-24 2:41 ameer armaly
2004-03-24 2:50 ` Joshua Kwan
2004-03-24 20:01 ` Andy Isaacson
0 siblings, 2 replies; 7+ messages in thread
From: ameer armaly @ 2004-03-24 2:41 UTC (permalink / raw)
To: linux-kernel
Hi all.
I got the latest kernel tree from linux.bkbits.net, and I try to make
config, and it complains about a missing zconf.tab.h. However, it has
decrypted the other sccs files, but for some oodd reason it can't find
this particular one. Suggestions would be appriciated.
Thanks,
Ameer
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: missing files in bk trees?
2004-03-24 2:41 missing files in bk trees? ameer armaly
@ 2004-03-24 2:50 ` Joshua Kwan
2004-03-24 4:35 ` Theodore Ts'o
2004-03-24 20:01 ` Andy Isaacson
1 sibling, 1 reply; 7+ messages in thread
From: Joshua Kwan @ 2004-03-24 2:50 UTC (permalink / raw)
To: linux-kernel
On Tue, 23 Mar 2004 21:41:46 -0500, ameer armaly wrote:
> Hi all.
> I got the latest kernel tree from linux.bkbits.net, and I try to make
> config, and it complains about a missing zconf.tab.h. However, it has
> decrypted the other sccs files, but for some oodd reason it can't find
> this particular one. Suggestions would be appriciated.
> Thanks,
you need to do 'bk -r get' in the root of your checkout
--
Joshua Kwan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: missing files in bk trees?
2004-03-24 2:50 ` Joshua Kwan
@ 2004-03-24 4:35 ` Theodore Ts'o
2004-03-24 8:48 ` James H. Cloos Jr.
2004-03-24 9:12 ` Gabriel Paubert
0 siblings, 2 replies; 7+ messages in thread
From: Theodore Ts'o @ 2004-03-24 4:35 UTC (permalink / raw)
To: Joshua Kwan; +Cc: linux-kernel
On Tue, Mar 23, 2004 at 06:50:16PM -0800, Joshua Kwan wrote:
> On Tue, 23 Mar 2004 21:41:46 -0500, ameer armaly wrote:
> > Hi all.
> > I got the latest kernel tree from linux.bkbits.net, and I try to make
> > config, and it complains about a missing zconf.tab.h. However, it has
> > decrypted the other sccs files, but for some oodd reason it can't find
> > this particular one. Suggestions would be appriciated.
> > Thanks,
>
> you need to do 'bk -r get' in the root of your checkout
Better to do a "bk -r get -S", actually. That way files that are
already checked out won't be created a second time.
- Ted
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: missing files in bk trees?
2004-03-24 4:35 ` Theodore Ts'o
@ 2004-03-24 8:48 ` James H. Cloos Jr.
2004-03-24 9:12 ` Gabriel Paubert
1 sibling, 0 replies; 7+ messages in thread
From: James H. Cloos Jr. @ 2004-03-24 8:48 UTC (permalink / raw)
To: linux-kernel
>>>>> "Josh" == Joshua Kwan <joshk@triplehelix.org> writes:
>>>>> "Ted" == Theodore Ts'o <tytso@mit.edu> writes:
Josh> you need to do 'bk -r get' in the root of your checkout
Ted> Better to do a "bk -r get -S", actually. That way files
Ted> that are already checked out won't be created a second time.
And even better, add a -U to skip the deleted files and others
under the BitKeeper dir:
bk -r -U get -S
-JimC
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: missing files in bk trees?
2004-03-24 4:35 ` Theodore Ts'o
2004-03-24 8:48 ` James H. Cloos Jr.
@ 2004-03-24 9:12 ` Gabriel Paubert
1 sibling, 0 replies; 7+ messages in thread
From: Gabriel Paubert @ 2004-03-24 9:12 UTC (permalink / raw)
To: Theodore Ts'o, Joshua Kwan, linux-kernel
On Tue, Mar 23, 2004 at 11:35:22PM -0500, Theodore Ts'o wrote:
> On Tue, Mar 23, 2004 at 06:50:16PM -0800, Joshua Kwan wrote:
> > On Tue, 23 Mar 2004 21:41:46 -0500, ameer armaly wrote:
> > > Hi all.
> > > I got the latest kernel tree from linux.bkbits.net, and I try to make
> > > config, and it complains about a missing zconf.tab.h. However, it has
> > > decrypted the other sccs files, but for some oodd reason it can't find
> > > this particular one. Suggestions would be appriciated.
> > > Thanks,
> >
> > you need to do 'bk -r get' in the root of your checkout
>
> Better to do a "bk -r get -S", actually. That way files that are
> already checked out won't be created a second time.
Even better is "bk -Ur get -S", which won't check out ChangeSet and the
files in the BitKeeper/ and its subdirectories. The most visible effect
is that it avoids checking out the 3000+ files in BitKeeper/deleted
(3098 as of this morning).
Regards,
Gabriel
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: missing files in bk trees?
2004-03-24 2:41 missing files in bk trees? ameer armaly
2004-03-24 2:50 ` Joshua Kwan
@ 2004-03-24 20:01 ` Andy Isaacson
2004-03-24 21:02 ` missing files in bk tree ameer armaly
1 sibling, 1 reply; 7+ messages in thread
From: Andy Isaacson @ 2004-03-24 20:01 UTC (permalink / raw)
To: ameer armaly; +Cc: linux-kernel
On Tue, Mar 23, 2004 at 09:41:46PM -0500, ameer armaly wrote:
> I got the latest kernel tree from linux.bkbits.net, and I try to make
> config, and it complains about a missing zconf.tab.h. However, it has
> decrypted the other sccs files, but for some oodd reason it can't find
> this particular one. Suggestions would be appriciated.
The build fails on this file because the kernel makefiles don't have
complete dependency information. Make is smart enough to automatically
check out foo.c and foo.h if you say
foo.o: foo.c foo.h
$(CC) -c foo.c -o foo.o
but in the absence of that information, make cannot deduce it.
The work-around is to simply check out everything before running make:
% bk -Ur get -S
-andy
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: missing files in bk tree
2004-03-24 20:01 ` Andy Isaacson
@ 2004-03-24 21:02 ` ameer armaly
0 siblings, 0 replies; 7+ messages in thread
From: ameer armaly @ 2004-03-24 21:02 UTC (permalink / raw)
To: Andy Isaacson; +Cc: linux-kernel
On Wed, 24 Mar 2004, Andy Isaacson wrote:
> On Tue, Mar 23, 2004 at 09:41:46PM -0500, ameer armaly wrote:
> > I got the latest kernel tree from linux.bkbits.net, and I try to make
> > config, and it complains about a missing zconf.tab.h. However, it has
> > decrypted the other sccs files, but for some oodd reason it can't find
> > this particular one. Suggestions would be appriciated.
>
> The build fails on this file because the kernel makefiles don't have
> complete dependency information. Make is smart enough to automatically
> check out foo.c and foo.h if you say
>
> foo.o: foo.c foo.h
> $(CC) -c foo.c -o foo.o
>
> but in the absence of that information, make cannot deduce it.
>
> The work-around is to simply check out everything before running make:
> % bk -Ur get -S
>
Thanks; It worked.
> -andy
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2004-03-24 21:11 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-03-24 2:41 missing files in bk trees? ameer armaly
2004-03-24 2:50 ` Joshua Kwan
2004-03-24 4:35 ` Theodore Ts'o
2004-03-24 8:48 ` James H. Cloos Jr.
2004-03-24 9:12 ` Gabriel Paubert
2004-03-24 20:01 ` Andy Isaacson
2004-03-24 21:02 ` missing files in bk tree ameer armaly
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox