[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] tools/libs/light: fix race in Makefile
The header $(INCLUDE)/_lixl_list.h matches two different rules, which can result in build breakage. Fix that. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> --- tools/libs/light/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/libs/light/Makefile b/tools/libs/light/Makefile index 3424fdb61b..370537ed38 100644 --- a/tools/libs/light/Makefile +++ b/tools/libs/light/Makefile @@ -203,9 +203,9 @@ _libxl.api-for-check: $(XEN_INCLUDE)/libxl.h $(AUTOINCS) >$@.new mv -f $@.new $@ -$(XEN_INCLUDE)/_libxl_list.h: $(XEN_INCLUDE)/xen-external/bsd-sys-queue-h-seddery $(XEN_INCLUDE)/xen-external/bsd-sys-queue.h - $(PERL) $^ --prefix=libxl >$(notdir $@).new - $(call move-if-changed,$(notdir $@).new,$@) +_libxl_list.h: $(XEN_INCLUDE)/xen-external/bsd-sys-queue-h-seddery $(XEN_INCLUDE)/xen-external/bsd-sys-queue.h + $(PERL) $^ --prefix=libxl >$@.new + $(call move-if-changed,$@.new,$@) _libxl_save_msgs_helper.c _libxl_save_msgs_callout.c \ _libxl_save_msgs_helper.h _libxl_save_msgs_callout.h: \ -- 2.26.2
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |