diff options
author | ru <ru@FreeBSD.org> | 2001-04-02 11:54:59 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-04-02 11:54:59 +0000 |
commit | 5c4fced5ffcee1acd7de5662b322d250d37e022d (patch) | |
tree | 606bcd4822c04f437ab29a078acd29e55265b829 /usr.bin/xinstall | |
parent | 755e4fa30b416226748e41463a162a6b7bab955d (diff) | |
download | FreeBSD-src-5c4fced5ffcee1acd7de5662b322d250d37e022d.zip FreeBSD-src-5c4fced5ffcee1acd7de5662b322d250d37e022d.tar.gz |
Do not override `realinstall' target, use ${PROGNAME}.
Diffstat (limited to 'usr.bin/xinstall')
-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 5b681b9..e6ff88e 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> |