changeset 454:7ae0e913675e

improved output style of "make update"
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 03 Oct 2009 22:42:36 +0200
parents 7867a970c9b4
children 5ba19c633370
files Makefile
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Oct 03 22:36:14 2009 +0200
+++ b/Makefile	Sat Oct 03 22:42:36 2009 +0200
@@ -204,10 +204,10 @@
 define UPDATE
     $(if $(2),
         $(if $(filter $(2),$($(1)_IGNORE)),
-            $(info $(1): $(2)  ignored),
+            $(info IGNORED  $(1): $(2)),
             $(if $(filter $(2),$($(1)_VERSION)),
-                $(info $(1): $(2)),
-                $(info $(1): $(2)  NEW)
+                $(info .        $(1): $(2)),
+                $(info NEW      $(1): $(2))
                 $(SED) 's/^\([^ ]*_VERSION *:=\).*/\1 $(2)/' -i '$(TOP_DIR)/src/$(1).mk'
                 $(MAKE) -f '$(MAKEFILE)' 'update-checksum-$(1)')),
         $(error Unable to update version number: $(1)))