Change an @ command in BLFS Makefile to honour $(Q) variable
This commit is contained in:
parent
18c1c950ea
commit
3c2e2885b1
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ $(TRACKFILE): $(TRACKING_DIR)
|
||||||
/bin/echo -e '$(INITIAL_TRACK)' > $@ && \
|
/bin/echo -e '$(INITIAL_TRACK)' > $@ && \
|
||||||
$(MAKE) $(PACK_LIST); \
|
$(MAKE) $(PACK_LIST); \
|
||||||
fi
|
fi
|
||||||
@for track in $(TRACKING_DIR)/*-*; do \
|
$(Q)for track in $(TRACKING_DIR)/*-*; do \
|
||||||
if [ -f $$track ]; then \
|
if [ -f $$track ]; then \
|
||||||
pack=$$(echo $$track | sed 's@.*/\(.*\)-[0-9c].*@\1@') && \
|
pack=$$(echo $$track | sed 's@.*/\(.*\)-[0-9c].*@\1@') && \
|
||||||
version=$$(echo $$track | sed 's@.*-\([0-9c].*\)@\1@') && \
|
version=$$(echo $$track | sed 's@.*-\([0-9c].*\)@\1@') && \
|
||||||
|
|
Reference in a new issue