[Devel] [PATCH 4/4] user-cr: Remove pointless echo lines and @-prefixed lines
Matt Helsley
matthltc at us.ibm.com
Fri Feb 26 10:56:42 PST 2010
In Make, actions prefixed with @ do not produce output showing what
Make is executing. It seems rather silly to manually echo the precise
output Make would produce automatically without the @ prefix.
Signed-off-by: Matt Helsley <matthltc at us.ibm.com>
---
Makefile | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index f8b113a..a4a1a8a 100644
--- a/Makefile
+++ b/Makefile
@@ -69,10 +69,8 @@ ckptinfo_types.c: $(CKPT_HEADERS) ckptinfo.py
install: $(PROGS)
/usr/bin/install -d -D $(BIN_INSTALL_DIR) $(LIB_INSTALL_DIR)
- @echo /usr/bin/install -m 755 checkpoint restart nsexec ckptinfo $(BIN_INSTALL_DIR)
- @/usr/bin/install -m 755 checkpoint restart ckptinfo nsexec $(BIN_INSTALL_DIR)
- @echo /usr/bin/install -m 755 $(LIB_ECLONE) $(LIB_INSTALL_DIR)
- @/usr/bin/install -m 755 $(LIB_ECLONE) $(LIB_INSTALL_DIR)
+ /usr/bin/install -m 755 checkpoint restart ckptinfo nsexec $(BIN_INSTALL_DIR)
+ /usr/bin/install -m 755 $(LIB_ECLONE) $(LIB_INSTALL_DIR)
$(CKPT_HEADERS): %:
./scripts/extract-headers.sh -s $(KERNELSRC) -o ./include
--
1.6.3.3
_______________________________________________
Containers mailing list
Containers at lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers
More information about the Devel
mailing list