[ Randall S. Winchester writes: ]
>
> 2) "make install" and make install-wrapper" had a couple directions
> switched.
>
> a) "make install" outputs:
>
> To finish the installation, 'su' to root and type:
> make install-wrapper
> or if not installing the wrapper, do
> cd /var/spool/majordomo; ./wrapper config-test
> to verify the installation
>
> NOTE:
> The next to the last line above should be "./wrapper config-test"
I think this whole set of instructions is confusing. Odds are, most
users will think they're supposed to 'su' to root and run config-test,
which is wrong, wrong, wrong.
> $TMPDIR = $ENV{'TMPDIR'} ? $ENV{'TMPDIR'} : '/usr/tmp';
Aaakkkk!!
$TMPDIR = $ENV{'TMPDIR'} || '/usr/tmp';
Or even:
$TMPDIR = $ENV{'TMPDIR'} || $ENV{'TMP'} || $ENV{'TEMP'} || '/usr/tmp';
--
Dave Wolfe *Not a spokesman for Motorola*
Motorola MMTG 6501 Wm. Cannon Dr. W. OE112 Austin TX 78735-8598
Follow-Ups:
References:
|
|