>>> On 25.11.14 at 08:44, <jgr...@suse.com> wrote:
> Hi,
> 
> make clean in xen-unstable is failing:
> 
> make[2]: Entering directory '/home/gross/xen/tools'
> set -e; if test -d qemu-xen-traditional-dir/.; then \
>          make -C qemu-xen-traditional-dir clean; \
> fi
> make[3]: Entering directory 
> '/home/gross/xen/tools/qemu-xen-traditional-dir-remote'
> Makefile:3: config-host.mak: No such file or directory

SRC_PATH gets defined there. This file missing makes me wonder
whether you ran "make clean" without a prior "make". If so,
perhaps the test in tools/Makefile should be altered:

subdir-clean-qemu-xen-traditional-dir:
        set -e; if test -e qemu-xen-traditional-dir/config-host.mak; then \
                $(MAKE) -C qemu-xen-traditional-dir clean; \
        fi

(possibly in a similar way for subdir-clean-qemu-xen-dir), albeit that
may end up leaving an unclean tree when having interrupted qemu's
configure process (not sure in which order it creates files).

Jan

> Makefile:4: /rules.mak: No such file or directory
> make[3]: *** No rule to make target '/rules.mak'.  Stop.
> make[3]: Leaving directory 
> '/home/gross/xen/tools/qemu-xen-traditional-dir-remote'
> Makefile:181: recipe for target 'subdir-clean-qemu-xen-traditional-dir' 
> failed
> make[2]: *** [subdir-clean-qemu-xen-traditional-dir] Error 2
> make[2]: Leaving directory '/home/gross/xen/tools'
> /home/gross/xen/tools/../tools/Rules.mk:111: recipe for target 
> 'subdirs-clean' failed
> make[1]: *** [subdirs-clean] Error 2
> make[1]: Leaving directory '/home/gross/xen/tools'
> Makefile:139: recipe for target 'clean' failed
> make: *** [clean] Error 2
> 
> 
> I think SRC_PATH is somehow undefined...
> 
> 
> Juergen
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org 
> http://lists.xen.org/xen-devel 




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

Reply via email to