Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-18 Thread Markus Armbruster
Peter Maydell writes: > On 17 March 2014 18:51, Andreas Färber wrote: >> Am 17.03.2014 09:30, schrieb Markus Armbruster: >>> Stefan Weil writes: >>> Am 14.03.2014 09:38, schrieb Fam Zheng: > DANGEROUS: don't try it before you read to the end. > > A first "make distclean" will u

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-18 Thread Markus Armbruster
Andreas Färber writes: > Am 17.03.2014 09:30, schrieb Markus Armbruster: >> Stefan Weil writes: >> >>> Am 14.03.2014 09:38, schrieb Fam Zheng: DANGEROUS: don't try it before you read to the end. A first "make distclean" will unset $(DSOSUF), a following "make distclean" or "

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-17 Thread Peter Maydell
On 17 March 2014 18:51, Andreas Färber wrote: > Am 17.03.2014 09:30, schrieb Markus Armbruster: >> Stefan Weil writes: >> >>> Am 14.03.2014 09:38, schrieb Fam Zheng: DANGEROUS: don't try it before you read to the end. A first "make distclean" will unset $(DSOSUF), a following "make

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-17 Thread Andreas Färber
Am 17.03.2014 09:30, schrieb Markus Armbruster: > Stefan Weil writes: > >> Am 14.03.2014 09:38, schrieb Fam Zheng: >>> DANGEROUS: don't try it before you read to the end. >>> >>> A first "make distclean" will unset $(DSOSUF), a following "make >>> distclean" or "make clean" will find all the file

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-17 Thread Markus Armbruster
Stefan Weil writes: > Am 14.03.2014 09:38, schrieb Fam Zheng: >> DANGEROUS: don't try it before you read to the end. >> >> A first "make distclean" will unset $(DSOSUF), a following "make >> distclean" or "make clean" will find all the files and delete it. >> >> Including all the files in the .gi

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-16 Thread Fam Zheng
On Fri, 03/14 18:49, Stefan Weil wrote: > Am 14.03.2014 09:38, schrieb Fam Zheng: > > DANGEROUS: don't try it before you read to the end. > > > > A first "make distclean" will unset $(DSOSUF), a following "make > > distclean" or "make clean" will find all the files and delete it. > > > > Including

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-14 Thread Stefan Weil
Am 14.03.2014 09:38, schrieb Fam Zheng: > DANGEROUS: don't try it before you read to the end. > > A first "make distclean" will unset $(DSOSUF), a following "make > distclean" or "make clean" will find all the files and delete it. > > Including all the files in the .git directory! If you only use

Re: [Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-14 Thread Stefan Hajnoczi
On Fri, Mar 14, 2014 at 04:38:20PM +0800, Fam Zheng wrote: > DANGEROUS: don't try it before you read to the end. > > A first "make distclean" will unset $(DSOSUF), a following "make > distclean" or "make clean" will find all the files and delete it. > > Including all the files in the .git directo

[Qemu-devel] [PATCH] Makefile: Don't find and delete when $(DSOSUF) is empty in "make clean"

2014-03-14 Thread Fam Zheng
DANGEROUS: don't try it before you read to the end. A first "make distclean" will unset $(DSOSUF), a following "make distclean" or "make clean" will find all the files and delete it. Including all the files in the .git directory! Fix it by only do it when $(DSOSUF) is not empty. Signed-off-by: