diff options
author | David Tardon <dtardon@redhat.com> | 2012-08-21 09:15:04 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-08-24 13:22:03 +0200 |
commit | 3d71bf4761192a0e1fb82c80653a22820fadc444 (patch) | |
tree | 8555b36005fdb4fd340e499b743b035839e52967 /solenv | |
parent | b665f80b6b87e6d0ed83ea63afe8cec0383eec03 (diff) |
fix make showdeliverables
In contexts where several deliverables with different index were
registered in one eval block, all indexes but the last one were lost,
because the current value of $(gb_Deliver_DELIVERABLES_INDEX) did not
contain them yet. We need to use the variable, not its value, here.
Change-Id: I537ec949c0491dc5b35461253fdaca1f4887ec31
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/Deliver.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/Deliver.mk b/solenv/gbuild/Deliver.mk index f2c9d90ca2c4..0f257e5b9814 100644 --- a/solenv/gbuild/Deliver.mk +++ b/solenv/gbuild/Deliver.mk @@ -46,7 +46,7 @@ endef define gb_Deliver_register_deliverable gb_Deliver_DELIVERABLES_$(notdir $(3)) += $(2):$(1) -gb_Deliver_DELIVERABLES_INDEX := $(sort $(gb_Deliver_DELIVERABLES_INDEX) $(notdir $(3))) +gb_Deliver_DELIVERABLES_INDEX := $$(sort $$(gb_Deliver_DELIVERABLES_INDEX) $(notdir $(3))) $(if $(gb_LOWRESTIME),.LOW_RESOLUTION_TIME : $(1),) endef |