Makefile.inc was conditionally setting vars already set by bsd.own.mk

which is read before tip's own Makefile is.  Move those varables here
where they will do some good.
This commit is contained in:
David E. O'Brien 1998-09-21 08:41:35 +00:00
parent d6bc2e88c1
commit 6d7cd12a6c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39539
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +0,0 @@
# These are mostly just for tip, but they're more visible up here.
BINDIR?= /usr/bin
BINOWN?= uucp
BINGRP?= dialer
BINMODE?= 4510

View File

@ -22,4 +22,12 @@ MAN5= modems.5
SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
remote.c tip.c tipout.c value.c vars.c
BINDIR?= /usr/bin
BINOWN= uucp
BINGRP= dialer
#BINMODE?= 4510
# XXX: there is some concern that `tip' in its current state shouldn't run
# SUID. If it believed it should, the mode above may still no be proper.
.include <bsd.prog.mk>