On 12/03/2015 16:24, Michael S. Tsirkin wrote: > > - $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh > > $@.tmp $<, " GEN $@.tmp") > > + $(call quiet-command, \ > > + $(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< > > $*-config-devices.mak.d $@ > $@.tmp, " GEN $@.tmp") > > $(call quiet-command, if test -f $@; then \ > > if cmp -s $@.old $@; then \ > Should this compare $@.old to $@.tmp? >
It is trying to detect user-modified */config-devices.mak, so $@ is fine. Paolo