summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe MacDonald <joe@deserted.net>2013-10-04 08:25:21 -0400
committerPaul Moore <pmoore@redhat.com>2013-10-04 08:25:21 -0400
commitcb528e0ed26eb6cf1f308e5f4db784b96610b562 (patch)
treec960de7d33f5cd66b08c79957ae584221a5ab261
parent70c894341f0b397730c8f3aef56b95c037c7a6e6 (diff)
downloadlibseccomp-cb528e0ed26eb6cf1f308e5f4db784b96610b562.tar.gz
build: remove quotes in the INSTALL_BIN_MACRO macro
The double-quotes around $^ in INSTALL_BIN_MACRO prevented it from being used to install more than a single binary to INSTALL_BIN_DIR at a time. Signed-off-by: Joe MacDonald <joe@deserted.net> Signed-off-by: Paul Moore <pmoore@redhat.com>
-rw-r--r--macros.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.mk b/macros.mk
index 9c62fa7..15529f6 100644
--- a/macros.mk
+++ b/macros.mk
@@ -181,7 +181,7 @@ INSTALL_BIN_MACRO += \
$(INSTALL) -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) \
-d "$(INSTALL_BIN_DIR)"; \
$(INSTALL) -o $(INSTALL_OWNER) -g $(INSTALL_GROUP) -m 0755 \
- "$^" "$(INSTALL_BIN_DIR)";
+ $^ "$(INSTALL_BIN_DIR)";
ifeq ($(V),0)
INSTALL_PC_MACRO = \