Remove no longer used references to rawlist.exclude and list.exclude files
These files have not been used since the introduction of make_disk_trees.pl. Remove remaining references, which results in a nice clean up of the Makefile.
This commit is contained in:
parent
e59ad475b0
commit
bdb3e3984b
27
Makefile
27
Makefile
|
@ -248,9 +248,7 @@ apt-update: status
|
|||
# Deleting the list only
|
||||
deletelist: ok
|
||||
$(Q)-rm $(BDIR)/rawlist
|
||||
$(Q)-rm $(BDIR)/rawlist-exclude
|
||||
$(Q)-rm $(BDIR)/list
|
||||
$(Q)-rm $(BDIR)/list.exclude
|
||||
|
||||
packagelists: ok apt-update genlist
|
||||
|
||||
|
@ -311,25 +309,9 @@ $(BDIR)/rawlist:
|
|||
fi
|
||||
# ls -al $(BDIR)/rawlist
|
||||
|
||||
# Build the raw list (cpp output) with doubles and spaces for excluded packages
|
||||
$(BDIR)/rawlist-exclude:
|
||||
$(Q)if [ -n "$(EXCLUDE)" ]; then \
|
||||
for ARCH in $(ARCHES); do \
|
||||
ARCHDEFS="$$ARCHDEFS -D ARCH_$(subst -,_,$$ARCH)"; \
|
||||
ARCHUNDEFS="$$ARCHUNDEFS -U $$ARCH"; \
|
||||
done; \
|
||||
perl -npe 's/\@ARCH\@/$(ARCH)/g' $(EXCLUDE) | \
|
||||
cpp -nostdinc -nostdinc++ -P -undef $$ARCHDEFS \
|
||||
$$ARCHUNDEFS -U i386 -U linux -U unix \
|
||||
-DFORCENONUSONCD1=0 \
|
||||
-I $(BASEDIR)/tasks -I $(BDIR) - - >> $(BDIR)/rawlist-exclude; \
|
||||
else \
|
||||
echo > $(BDIR)/rawlist-exclude; \
|
||||
fi
|
||||
|
||||
# Generate the complete listing of packages from the task
|
||||
# Build a nice list without doubles and without spaces
|
||||
genlist: ok $(BDIR)/list $(BDIR)/list.exclude
|
||||
genlist: ok $(BDIR)/list
|
||||
$(BDIR)/list: $(BDIR)/rawlist
|
||||
@echo "Generating the complete list of packages to be included in $(BDIR)/list..."
|
||||
$(Q)perl -ne 'chomp; next if /^\s*$$/; \
|
||||
|
@ -337,13 +319,6 @@ $(BDIR)/list: $(BDIR)/rawlist
|
|||
$(BDIR)/rawlist \
|
||||
> $(BDIR)/list
|
||||
|
||||
$(BDIR)/list.exclude: $(BDIR)/rawlist-exclude
|
||||
@echo "Generating the complete list of packages to be removed ..."
|
||||
$(Q)perl -ne 'chomp; next if /^\s*$$/; \
|
||||
print "$$_\n" if not $$seen{$$_}; $$seen{$$_}++;' \
|
||||
$(BDIR)/rawlist-exclude \
|
||||
> $(BDIR)/list.exclude
|
||||
|
||||
## IMAGE BUILDING ##
|
||||
|
||||
image-trees: ok genlist
|
||||
|
|
|
@ -5,8 +5,9 @@ debian-cd (3.0.6) UNRELEASED; urgency=low
|
|||
This should not affect users as netinst installs should normally use a
|
||||
mirror and thus the package will be installed from there if needed.
|
||||
brltty will still get included on full CDs and DVDs through forcd1.
|
||||
* Remove no longer used references to rawlist.exclude and list.exclude files.
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Wed, 29 Oct 2008 14:58:02 +0100
|
||||
-- Frans Pop <fjp@debian.org> Sun, 02 Nov 2008 00:03:00 +0100
|
||||
|
||||
debian-cd (3.0.5) unstable; urgency=low
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@ my $nonfree = $ENV{'NONFREE'} || 0;
|
|||
my $extranonfree = $ENV{'EXTRANONFREE'} || 0;
|
||||
my $local = $ENV{'LOCAL'} || 0;
|
||||
my $complete = $ENV{'COMPLETE'} || 0;
|
||||
my $exclude = "$list.exclude";
|
||||
my $norecommends = $ENV{'NORECOMMENDS'} || 0;
|
||||
my $nosuggests = $ENV{'NOSUGGESTS'} || 1;
|
||||
|
||||
|
@ -51,7 +50,6 @@ msg(1, "======================================================================
|
|||
Here are the settings you've chosen for making the list:
|
||||
Architecture: $arch
|
||||
List of prefered packages: $list
|
||||
Exclude file: $exclude
|
||||
Output file: $dir/packages.$arch
|
||||
");
|
||||
msg(1, "Complete selected packages with all the rest: ");
|
||||
|
|
Loading…
Reference in New Issue