From 9de4f0c67def5ab75c4f5a9a4428b719e149e8b2 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Wed, 7 Mar 2007 10:49:20 +0000 Subject: tools: Clean up use of 'install' command. - convert raw "install" command to use $(INSTALL) - convert some $(INSTALL) to $(INSTALL_DATA) as appropriate - modify the specific $(INSTALL) definitions to use -p. Original patch by Ben Thomas Signed-off-by: Keir Fraser --- config/StdGNU.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config/StdGNU.mk') diff --git a/config/StdGNU.mk b/config/StdGNU.mk index 32a37b44fa..8c947f4832 100644 --- a/config/StdGNU.mk +++ b/config/StdGNU.mk @@ -12,9 +12,9 @@ OBJDUMP = $(CROSS_COMPILE)objdump MSGFMT = msgfmt INSTALL = install -INSTALL_DIR = $(INSTALL) -d -m0755 -INSTALL_DATA = $(INSTALL) -m0644 -INSTALL_PROG = $(INSTALL) -m0755 +INSTALL_DIR = $(INSTALL) -d -m0755 -p +INSTALL_DATA = $(INSTALL) -m0644 -p +INSTALL_PROG = $(INSTALL) -m0755 -p LIB64DIR = lib64 -- cgit v1.2.3