Don't show status for equals
If the installed and local file are the same, don't show that it's not being installed, only show not installing older files during install.
This commit is contained in:
parent
752c0436b1
commit
51d1211586
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ $(install-objects): install-%: %
|
|||
@$(if $(call newer,$*), \
|
||||
echo -e "$(FG_GRE)+ $(FG_YEL)$(MKDPREFIX)$* $(CLR_RE)to $(DESTDIR) as $(MODE)"; \
|
||||
install -pDm $(MODE) "$*" "$(DESTDIR)/$*", \
|
||||
echo -e "$(FG_RED)- $(FG_YEL)$(MKDPREFIX)$*$(CLR_RE)")
|
||||
$(if $(call older,$*) ,\
|
||||
echo -e "$(FG_RED)- $(FG_YEL)$(MKDPREFIX)$*$(CLR_RE)"))
|
||||
|
||||
$(install-modules): install-%:
|
||||
@$(MAKE) -s -C $* install MKDPREFIX=$(MKDPREFIX)$*/
|
||||
|
|
Loading…
Reference in a new issue