From 23be2ac372173ecf701a0ab179c510ca54b678d0 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 23 Jun 2017 08:06:58 +0200 Subject: Avoid "install -t" in RTEMS Makefile --- Makefile.rtems | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.rtems b/Makefile.rtems index 7137c04..6c8e140 100644 --- a/Makefile.rtems +++ b/Makefile.rtems @@ -68,8 +68,8 @@ clean: install: all mkdir -p $(INSTALL_BASE)/include/yaffs - install -m 644 -t $(INSTALL_BASE) $(LIB) - install -m 644 -t $(INSTALL_BASE)/include/yaffs $(INCLUDES) + install -m 644 $(LIB) $(INSTALL_BASE) + install -m 644 $(INCLUDES) $(INSTALL_BASE)/include/yaffs .PHONY: clean install -- cgit v1.2.3