Install the executable initially with permissions that allow stripping it.

This commit is contained in:
mycroft 1995-06-10 20:56:34 +00:00
parent 74b93ae68f
commit a05e746824

View File

@ -1,12 +1,13 @@
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
# $Id: Makefile,v 1.9 1994/06/02 23:40:17 jtc Exp $
# $Id: Makefile,v 1.10 1995/06/10 20:56:34 mycroft Exp $
PROG= strip
realinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} strip \
install -c -o ${BINOWN} -g ${BINGRP} -m 600 strip \
${DESTDIR}${BINDIR}
./strip ${DESTDIR}${BINDIR}/strip
chmod ${BINMODE} ${DESTDIR}${BINDIR}/strip
-if [ "${COPY}" = "" ]; then rm -f ./strip; fi
.include <bsd.prog.mk>