From: Dan Harkless Date: Sat, 2 Oct 1999 06:00:11 +0000 (+0000) Subject: I didn't like the double use of "MAILGROUP" for two different variables used in X-Git-Tag: nmh-1_0~138 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=bf46cc47a8f442fdbc08d81f8b51d30115637a93 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. --- 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