On 200605 1956, Philippe Mathieu-Daudé wrote: > On 6/5/20 7:40 PM, Alexander Bulekov wrote: -cut- > "make install-datadir"? I think this just sets up the datadir for subsequent copies:
install-datadir: $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)" The actual copy happens in install: install: all $(if $(BUILD_DOCS),install-doc) \ install-datadir install-localstatedir install-includedir ... ifneq ($(BLOBS),) set -e; for x in $(BLOBS); do \ $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \ done ... > > > + > > +# Copy over the qemu-fuzz-i386, naming it according to each available fuzz > > +# target (See 05509c8e6d fuzz: select fuzz target using executable name) > > +for target in $(./i386-softmmu/qemu-fuzz-i386 | awk '$1 ~ /\*/ {print > > $2}'); > > +do > > + cp ./i386-softmmu/qemu-fuzz-i386 $OUT/qemu-fuzz-i386-target-$target > > There seems to be an extra 'target'. > > > +done > > > > Or "make install", not sure. If I can get this to work, hopefully it will also take care of the datadir. Thanks -Alex