diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-31 16:05:06 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-31 16:05:06 +0000 |
commit | 56dcbac924d0b6dd0133e68c8dd62a5f894296b0 (patch) | |
tree | 11679c2a0ae25196ffa8b66a9864eb52caabd573 /usr.bin/xinstall/Makefile | |
parent | ef8525f6a578fdd52380916cb36b69df308eaf6b (diff) |
Add ${COPY} on install command so that the file in obj does
not get removed when running make install.
Notes
Notes:
svn path=/head/; revision=1661
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index 83cc8e0ffbba..ae0192588d62 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -6,7 +6,7 @@ MAN1= install.0 .PATH: ${.CURDIR}/../../bin/ls install: - install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${PROG} ${DESTDIR}${BINDIR}/install .include <bsd.prog.mk> |