diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2001-04-02 11:54:59 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2001-04-02 11:54:59 +0000 |
commit | a73313a679dbb60de894afee649ed7cff471fde7 (patch) | |
tree | d547b5293504c32b9a480eb6de1ccdd5cea664c8 /usr.bin/xinstall/Makefile | |
parent | 95f8c8262a23cd784a803776e060fe942bb67b2a (diff) |
Do not override `realinstall' target, use ${PROGNAME}.
Notes
Notes:
svn path=/head/; revision=75084
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index 5b681b92b7b8..e6ff88e90a5b 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -1,11 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ -PROG= xinstall -MAN= install.1 - -realinstall: - ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${PROG} ${DESTDIR}${BINDIR}/install +PROG= xinstall +PROGNAME= install +MAN= install.1 .include <bsd.prog.mk> |