# HG changeset patch # User timothy.murphy@nokia.com # Date 1267384687 -7200 # Node ID 733464eaac50060ad476698b3a38f5bbc49ffb90 # Parent 64208ed747d4573920d092719b014047599bee50 fix: make sure host attribute is set rather than blank in logs on windows by using the env var 'COMPUTERNAME' instead of 'HOSTNAME'. Thus make it less difficult to order recipes in the log by time. diff -r 64208ed747d4 -r 733464eaac50 sbsv2/raptor/lib/flm/taggedrules.mk --- a/sbsv2/raptor/lib/flm/taggedrules.mk Mon Feb 22 22:24:20 2010 +0000 +++ b/sbsv2/raptor/lib/flm/taggedrules.mk Sun Feb 28 21:18:07 2010 +0200 @@ -99,10 +99,17 @@ else + + ifneq ($(filter win,$(HOST_PLATFORM)),) + TALON_HOSTNAME_VAR:=$$COMPUTERNAME + else + TALON_HOSTNAME_VAR:=$$HOSTNAME + endif + TALON_RECIPEATTRIBUTES:=\ name='$$RECIPE'\ target='$$TARGET'\ - host='$$HOSTNAME'\ + host='$(TALON_HOSTNAME_VAR)'\ layer='$$COMPONENT_LAYER'\ component='$$COMPONENT_NAME'\ bldinf='$$COMPONENT_META' mmp='$$PROJECT_META'\