From bf46cc47a8f442fdbc08d81f8b51d30115637a93 Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Sat, 2 Oct 1999 06:00:11 +0000 Subject: [PATCH] I didn't like the double use of "MAILGROUP" for two different variables used in different languages, with different values. I renamed Doug's new Makefile "MAILGROUP" to MAIL_SPOOL_GRP. --- uip/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uip/Makefile.in b/uip/Makefile.in index a2ecd08..2a21bd7 100644 --- a/uip/Makefile.in +++ b/uip/Makefile.in @@ -41,8 +41,8 @@ LN = ln INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ -SETGID_MAIL = @SETGID_MAIL@ -MAILGROUP = @MAILGROUP@ +MAIL_SPOOL_GRP = @MAIL_SPOOL_GRP@ +SETGID_MAIL = @SETGID_MAIL@ .SUFFIXES: .SUFFIXES: .c .o @@ -274,7 +274,7 @@ install-misc: # install commands with special installation needs (thus no $(SCMDS) use here) install-scmds: if test x$(SETGID_MAIL) = x1; then \ - $(INSTALL_PROGRAM) -g $(MAILGROUP) -m 2755 inc $(bindir)/$$cmd; \ + $(INSTALL_PROGRAM) -g $(MAIL_SPOOL_GRP) -m 2755 inc $(bindir)/$$cmd; \ else \ $(INSTALL_PROGRAM) inc $(bindir)/$$cmd; \ fi -- 1.7.10.4