|
@@ -385,12 +385,8 @@ install-sysconfig: install-datadir install-confdir
|
|
|
|
|
|
install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \
|
|
install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \
|
|
install-datadir install-localstatedir
|
|
install-datadir install-localstatedir
|
|
- $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
|
|
|
|
ifneq ($(TOOLS),)
|
|
ifneq ($(TOOLS),)
|
|
- $(INSTALL_PROG) $(TOOLS) "$(DESTDIR)$(bindir)"
|
|
|
|
-ifneq ($(STRIP),)
|
|
|
|
- $(STRIP) $(TOOLS:%="$(DESTDIR)$(bindir)/%")
|
|
|
|
-endif
|
|
|
|
|
|
+ $(call install-prog,$(TOOLS),$(DESTDIR)$(bindir))
|
|
endif
|
|
endif
|
|
ifneq ($(CONFIG_MODULES),)
|
|
ifneq ($(CONFIG_MODULES),)
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
|
|
@@ -401,11 +397,7 @@ ifneq ($(CONFIG_MODULES),)
|
|
done
|
|
done
|
|
endif
|
|
endif
|
|
ifneq ($(HELPERS-y),)
|
|
ifneq ($(HELPERS-y),)
|
|
- $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)"
|
|
|
|
- $(INSTALL_PROG) $(HELPERS-y) "$(DESTDIR)$(libexecdir)"
|
|
|
|
-ifneq ($(STRIP),)
|
|
|
|
- $(STRIP) $(HELPERS-y:%="$(DESTDIR)$(libexecdir)/%")
|
|
|
|
-endif
|
|
|
|
|
|
+ $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
|
|
endif
|
|
endif
|
|
ifneq ($(BLOBS),)
|
|
ifneq ($(BLOBS),)
|
|
set -e; for x in $(BLOBS); do \
|
|
set -e; for x in $(BLOBS); do \
|