Browse Source

Make tarball generation quieter

Deleting bin/deps after "make veryclean" keeps deps from being
regenerated in the tarball.
tags/v0.9.3
Marty Connor 16 years ago
parent
commit
e6ff84b2d1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/Makefile.housekeeping

+ 1
- 1
src/Makefile.housekeeping View File

@@ -593,7 +593,7 @@ tarball : ../VERSION
593 593
 	$(RM) -r /tmp/$(USER)/gpxe-$(VERSION)
594 594
 	mkdir -p /tmp/$(USER)/gpxe-$(VERSION)
595 595
 	cp -rP .. /tmp/$(USER)/gpxe-$(VERSION)
596
-	( cd /tmp/$(USER)/gpxe-$(VERSION)/src ; $(RM) -r bin/deps; $(MAKE) clean ; $(MAKE) veryclean )
596
+	( cd /tmp/$(USER)/gpxe-$(VERSION)/src ; $(MAKE) veryclean ; $(RM) -r bin/deps )
597 597
 	( cd /tmp/$(USER); tar cf /tmp/$(USER)/gpxe-$(VERSION).tar --exclude ".git*" --exclude "#*" \
598 598
 	  --exclude "*~" gpxe-$(VERSION) )
599 599
 	bzip2 -9 < /tmp/$(USER)/gpxe-$(VERSION).tar > /tmp/$(USER)/gpxe-$(VERSION).tar.bz2

Loading…
Cancel
Save