Gentoo Archives: gentoo-dev

From: Joey van der Wansem <joey@×××××××××.nl>
To: gentoo-dev@g.o
Subject: [gentoo-dev] Installation tip
Date: Sun, 03 Feb 2002 03:06:12
Message-Id: 000801c1ac91$e6bb6240$1701a8c0@joey
1 Hi there,
2
3 At the following page on gentoo.org: http://www.gentoo.org/doc/build.html. You have
4 at section 12 the following rule containing the make process of building the kernel.
5 # make dep; make clean; make bzImage; make modules; make modules_install
6 It's better to do it like this, because if one make-procedure fails it doesn't run the other ones and you
7 see the error which is generated at first.
8 # make dep && make clean && make bzImage && make modules && make modules_install
9 Sorry for my bad English...
10
11 Greetings,
12
13 Joey (The Netherlands)

Replies

Subject Author
Re: [gentoo-dev] Installation tip Martin Schlemmer <azarah@g.o>