I didn't like the double use of "MAILGROUP" for two different variables used in
authorDan Harkless <dan@harkless.org>
Sat, 2 Oct 1999 06:00:11 +0000 (06:00 +0000)
committerDan Harkless <dan@harkless.org>
Sat, 2 Oct 1999 06:00:11 +0000 (06:00 +0000)
different languages, with different values.  I renamed Doug's new Makefile
"MAILGROUP" to MAIL_SPOOL_GRP.

uip/Makefile.in

index a2ecd08..2a21bd7 100644 (file)
@@ -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