From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZN1ux-0001fp-PE for qemu-devel@nongnu.org; Wed, 05 Aug 2015 12:51:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZN1uw-0004tJ-VG for qemu-devel@nongnu.org; Wed, 05 Aug 2015 12:51:51 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:55191) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZN1uw-0004tF-Pa for qemu-devel@nongnu.org; Wed, 05 Aug 2015 12:51:50 -0400 From: Christopher Covington Date: Wed, 5 Aug 2015 12:51:12 -0400 Message-Id: <1438793483-12721-4-git-send-email-cov@codeaurora.org> In-Reply-To: <1438793483-12721-1-git-send-email-cov@codeaurora.org> References: <1438793483-12721-1-git-send-email-cov@codeaurora.org> Subject: [Qemu-devel] [RFC 03/14] Fix makefile List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Christopher Covington Fixes https://bugs.launchpad.net/qemu/+bug/1319493/ Signed-off-by: Christopher Covington --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93af871..fcc6314 100644 --- a/Makefile +++ b/Makefile @@ -408,7 +408,11 @@ ifneq ($(CONFIG_MODULES),) done endif ifneq ($(HELPERS-y),) - $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir)) + $(INSTALL_DIR) "$(DESTDIR)$(libexecdir)" + $(INSTALL_PROG) $(HELPERS-y) "$(DESTDIR)$(libexecdir)" +ifneq ($(STRIP),) + $(STRIP) $(addprefix "$(DESTDIR)$(libexecdir)/",$(notdir $(HELPERS-y))) +endif endif ifneq ($(BLOBS),) set -e; for x in $(BLOBS); do \ -- Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project