Don't ship boot.iso on cd1 or the DVD. It just wastes space.

This commit is contained in:
Jesse Keating 2009-01-28 16:02:48 -08:00
parent 353600eb98
commit 972240b972
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ self.reserve_size : Additional size needed to be reserved on the first disc.
for i in range(self.bin_list[0], self.bin_list[-1] + 1):
if i == 1:
p = os.popen('find %s/ -type f -not -name .discinfo -not -name "*\.rpm"' % self.dist_dir, 'r')
p = os.popen('find %s/ -type f -not -name .discinfo -not -name "*\.rpm" -not -name "boot.iso"' % self.dist_dir, 'r')
filelist = p.read()
p.close()
filelist = string.split(filelist)