[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [for-4.15 PATCH] build: remove more absolute paths from dependency tracking files
Jan Beulich writes ("[PATCH] build: remove more absolute paths from dependency tracking files"): > d6b12add90da ("DEPS handling: Remove absolute paths from references to > cwd") took care of massaging the dependencies of the output file, but > for our passing of -MP to the compiler to take effect the same needs to > be done on the "phony" rules that the compiler emits. Thanks. I think this is a bugfix. As discussed in d6b12add90da these absolute paths can cause build races. So: Release-Acked-by: Ian Jackson <iwj@xxxxxxxxxxxxxx> > Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> > > --- a/Config.mk > +++ b/Config.mk > @@ -63,7 +63,7 @@ DEPS_INCLUDE = $(addsuffix .d2, $(basena > DEPS_RM = $(DEPS) $(DEPS_INCLUDE) > > %.d2: %.d > - sed "s! $$PWD/! !" $^ >$@.tmp && mv -f $@.tmp $@ > + sed "s!\(^\| \)$$PWD/! !" $^ >$@.tmp && mv -f $@.tmp $@ > > include $(XEN_ROOT)/config/$(XEN_OS).mk > include $(XEN_ROOT)/config/$(XEN_TARGET_ARCH).mk
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |