Makefile: don't attempt to fetch the stage3 if stage3 was already run
This commit is contained in:
parent
0e2fb5bda6
commit
d500b91164
6
Makefile
6
Makefile
|
@ -55,8 +55,10 @@ preproot: stage3
|
||||||
|
|
||||||
stage3: make.conf package.use package.keywords locale.gen
|
stage3: make.conf package.use package.keywords locale.gen
|
||||||
mkdir -p $(CHROOT)
|
mkdir -p $(CHROOT)
|
||||||
wget -c -q -nc $(STAGE3)
|
if [ ! -e stage3 ] ; then \
|
||||||
test -e stage3 || tar xvjpf stage3-*.tar.bz2 -C $(CHROOT)
|
wget -c -q -nc $(STAGE3); \
|
||||||
|
tar xvjpf stage3-*.tar.bz2 -C $(CHROOT); \
|
||||||
|
fi
|
||||||
cp make.conf $(CHROOT)/etc/make.conf
|
cp make.conf $(CHROOT)/etc/make.conf
|
||||||
cp locale.gen $(CHROOT)/etc/locale.gen
|
cp locale.gen $(CHROOT)/etc/locale.gen
|
||||||
mkdir -p $(CHROOT)/etc/portage
|
mkdir -p $(CHROOT)/etc/portage
|
||||||
|
|
Loading…
Reference in New Issue