BLFS/Makefile:
- Do not call make after inititalizing the tracking file - Remove the <package-version> file from tracking dir after using it - Fix a typo
This commit is contained in:
parent
203a64ca76
commit
e415656b9f
1 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
# From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
|
# From the Build Scripts Written By: Jim Gifford <lfs@jg555.com>
|
||||||
# Modified By: Joe Ciccone <jciccone@linuxfromscratch.org
|
# Modified By: Joe Ciccone <jciccone@linuxfromscratch.org>
|
||||||
# Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
|
# Additional changes: George Boudreau <georgeb@linuxfromscratch.org>
|
||||||
# Pierre Labastie <pierre.labastie at neuf.fr>
|
# Pierre Labastie <pierre.labastie at neuf.fr>
|
||||||
|
|
||||||
|
@ -111,8 +111,7 @@ $(PACK_LIST): $(XSLDIR)/gen_pkg_list.xsl $(XSLDIR)/specialCases.xsl $(TRACKFILE)
|
||||||
$(TRACKFILE): $(TRACKING_DIR)
|
$(TRACKFILE): $(TRACKING_DIR)
|
||||||
$(Q)if ! [ -f $@ ]; then \
|
$(Q)if ! [ -f $@ ]; then \
|
||||||
echo Initializing $(TRACKFILE) && \
|
echo Initializing $(TRACKFILE) && \
|
||||||
/bin/echo -e '$(INITIAL_TRACK)' > $@ && \
|
/bin/echo -e '$(INITIAL_TRACK)' > $@; \
|
||||||
$(MAKE) $(PACK_LIST); \
|
|
||||||
fi
|
fi
|
||||||
$(Q)for track in $(TRACKING_DIR)/*-*; do \
|
$(Q)for track in $(TRACKING_DIR)/*-*; do \
|
||||||
if [ -f $$track ]; then \
|
if [ -f $$track ]; then \
|
||||||
|
@ -125,6 +124,7 @@ $(TRACKFILE): $(TRACKING_DIR)
|
||||||
sed -i 's@PACKDESC@$(TOPDIR)/packdesc.dtd@' track.tmp && \
|
sed -i 's@PACKDESC@$(TOPDIR)/packdesc.dtd@' track.tmp && \
|
||||||
xmllint --format --postvalid track.tmp > $@; \
|
xmllint --format --postvalid track.tmp > $@; \
|
||||||
fi; \
|
fi; \
|
||||||
|
rm -f $$track; \
|
||||||
done; \
|
done; \
|
||||||
rm -f track.tmp
|
rm -f track.tmp
|
||||||
|
|
||||||
|
|
Reference in a new issue