1997-09-10 02:52:59 +00:00
|
|
|
--- Makefile.orig Thu Aug 28 00:56:21 1997
|
|
|
|
+++ Makefile Wed Sep 10 00:56:08 1997
|
1996-12-27 06:25:02 +00:00
|
|
|
@@ -12,22 +12,22 @@
|
1996-10-26 18:21:17 +00:00
|
|
|
#
|
1996-12-27 06:25:02 +00:00
|
|
|
|
|
|
|
# Put the location of your Perl binary here:
|
|
|
|
-PERL = /bin/perl
|
1997-09-10 02:44:25 +00:00
|
|
|
+PERL = /usr/bin/perl
|
1996-10-26 18:21:17 +00:00
|
|
|
|
1996-12-27 06:25:02 +00:00
|
|
|
# What do you call your C compiler?
|
|
|
|
CC = cc
|
|
|
|
|
|
|
|
# Where do you want Majordomo to be installed? This CANNOT be the
|
|
|
|
# current directory (where you unpacked the distribution)
|
|
|
|
-W_HOME = /usr/test/majordomo-$(VERSION)
|
|
|
|
+W_HOME = ${PREFIX}/majordomo
|
|
|
|
|
|
|
|
# Where do you want man pages to be installed?
|
|
|
|
-MAN = $(W_HOME)/man
|
|
|
|
+MAN = ${PREFIX}/man
|
|
|
|
|
|
|
|
# You need to have or create a user and group which majordomo will run as.
|
|
|
|
# Enter the numeric UID and GID (not their names!) here:
|
|
|
|
-W_USER = 123
|
|
|
|
-W_GROUP = 45
|
|
|
|
+W_USER = %%MJUID%%
|
|
|
|
+W_GROUP = %%MJGID%%
|
1996-10-26 18:21:17 +00:00
|
|
|
|
1996-12-27 06:25:02 +00:00
|
|
|
# These set the permissions for all installed files and executables (except
|
|
|
|
# the wrapper), respectively. Some sites may wish to make these more
|
1997-09-10 02:52:59 +00:00
|
|
|
@@ -62,11 +62,11 @@
|
1996-10-26 18:21:17 +00:00
|
|
|
# parent process, and without the leading "W_" in the variable names) gets
|
|
|
|
# passed to processes run by "wrapper"
|
1996-12-27 06:25:02 +00:00
|
|
|
W_SHELL = /bin/sh
|
|
|
|
-W_PATH = /bin:/usr/bin:/usr/ucb
|
|
|
|
+W_PATH = /bin:/usr/bin
|
|
|
|
W_MAJORDOMO_CF = $(W_HOME)/majordomo.cf
|
1996-10-26 18:21:17 +00:00
|
|
|
|
1996-12-27 06:25:02 +00:00
|
|
|
# A directory for temp files..
|
1997-01-11 16:49:19 +00:00
|
|
|
-TMPDIR = /usr/tmp
|
1997-01-11 19:56:25 +00:00
|
|
|
+TMPDIR ?= /var/tmp
|
1997-01-11 16:49:19 +00:00
|
|
|
|
|
|
|
#--------YOU SHOULDN'T HAVE TO CHANGE ANYTHING BELOW THIS LINE.-------------
|
|
|
|
|