From 51eb05d411484875ea313bab07aabe55938a0ded Mon Sep 17 00:00:00 2001 From: Johnny Tang Date: Mon, 14 Nov 1994 23:21:51 +0000 Subject: [PATCH] replace install with cp and chmod. --- src/iocCore/Makefile.Vx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/iocCore/Makefile.Vx b/src/iocCore/Makefile.Vx index 53527740e..3849cbb8b 100644 --- a/src/iocCore/Makefile.Vx +++ b/src/iocCore/Makefile.Vx @@ -22,10 +22,12 @@ PROD = iocCore vxWorks vxWorks.sym include $(EPICS)/config/RULES.Vx vxWorks: $(VX_IMAGE) - @$(INSTALL) -m 444 $? $@ + cp $< . + chmod 444 $@ vxWorks.sym: $(VX_IMAGE_SYM) - @$(INSTALL) -m 444 $? $@ + cp $< . + chmod 444 $@ iocCore: $(IOC_CORE_OBJS) $(LINK.c) $@ $(IOC_CORE_OBJS)