From c20ad2836ce61c8db3dfbf2aa287e7fd4939ba5d Mon Sep 17 00:00:00 2001 From: David Gibson Date: Tue, 22 Mar 2022 16:40:57 +1100 Subject: [PATCH] virtcontainers: Remove unused Makefile defines The INSTALL_EXEC and UNINSTALL_EXEC definitions from the virtcontainers Makefile (unlike those from the runtime Makefile in the parent directory) are entirely unused. Remove them. Signed-off-by: David Gibson --- src/runtime/virtcontainers/Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/runtime/virtcontainers/Makefile b/src/runtime/virtcontainers/Makefile index 8a0e2761e..86da3a6e9 100644 --- a/src/runtime/virtcontainers/Makefile +++ b/src/runtime/virtcontainers/Makefile @@ -51,10 +51,6 @@ check-go-test: # Install # -define INSTALL_EXEC - install -D $1 $(VC_BIN_DIR)/ || exit 1; -endef - define INSTALL_TEST_EXEC install -D $1 $(TEST_BIN_DIR)/ || exit 1; endef @@ -68,10 +64,6 @@ install: # Uninstall # -define UNINSTALL_EXEC - rm -f $(call FILE_SAFE_TO_REMOVE,$(VC_BIN_DIR)/$1) || exit 1; -endef - define UNINSTALL_TEST_EXEC rm -f $(call FILE_SAFE_TO_REMOVE,$(TEST_BIN_DIR)/$1) || exit 1; endef