mirror of https://github.com/ipxe/ipxe.git
Make tarball generation quieter
Deleting bin/deps after "make veryclean" keeps deps from being regenerated in the tarball.pull/1/head v0.9.3
parent
c9593cd35b
commit
e6ff84b2d1
|
@ -593,7 +593,7 @@ tarball : ../VERSION
|
||||||
$(RM) -r /tmp/$(USER)/gpxe-$(VERSION)
|
$(RM) -r /tmp/$(USER)/gpxe-$(VERSION)
|
||||||
mkdir -p /tmp/$(USER)/gpxe-$(VERSION)
|
mkdir -p /tmp/$(USER)/gpxe-$(VERSION)
|
||||||
cp -rP .. /tmp/$(USER)/gpxe-$(VERSION)
|
cp -rP .. /tmp/$(USER)/gpxe-$(VERSION)
|
||||||
( cd /tmp/$(USER)/gpxe-$(VERSION)/src ; $(RM) -r bin/deps; $(MAKE) clean ; $(MAKE) veryclean )
|
( cd /tmp/$(USER)/gpxe-$(VERSION)/src ; $(MAKE) veryclean ; $(RM) -r bin/deps )
|
||||||
( cd /tmp/$(USER); tar cf /tmp/$(USER)/gpxe-$(VERSION).tar --exclude ".git*" --exclude "#*" \
|
( cd /tmp/$(USER); tar cf /tmp/$(USER)/gpxe-$(VERSION).tar --exclude ".git*" --exclude "#*" \
|
||||||
--exclude "*~" gpxe-$(VERSION) )
|
--exclude "*~" gpxe-$(VERSION) )
|
||||||
bzip2 -9 < /tmp/$(USER)/gpxe-$(VERSION).tar > /tmp/$(USER)/gpxe-$(VERSION).tar.bz2
|
bzip2 -9 < /tmp/$(USER)/gpxe-$(VERSION).tar > /tmp/$(USER)/gpxe-$(VERSION).tar.bz2
|
||||||
|
|
Loading…
Reference in New Issue