Changeset 1044
- Timestamp:
- 07/24/06 11:43:08 (6 years ago)
- Files:
-
- people/ilmari/modularisation-branch/Makefile (modified) (1 diff)
- people/ilmari/modularisation-branch/node/munin-run.in (modified) (1 diff)
- people/ilmari/modularisation-branch/t/munin-run.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
people/ilmari/modularisation-branch/Makefile
r1043 r1044 270 270 @for test in t/*.t; do \ 271 271 echo -n "$$test: "; \ 272 PERL 5LIB=$(PERLLIB) $(PERL) $$test;\272 PERLLIB=$(PERLLIB) $(PERL) $$test;\ 273 273 done 274 274 endif people/ilmari/modularisation-branch/node/munin-run.in
r1043 r1044 21 21 # 22 22 23 use lib qw(@@PERLLIB@@);24 23 use strict; 25 24 use Getopt::Long; people/ilmari/modularisation-branch/t/munin-run.t
r1042 r1044 6 6 7 7 my $PREFIX = $ENV{PWD}.'/t/install'; 8 my $run = "$PREFIX/sbin/munin-run --sconfdir=$ENV{PWD}/t/plugin-conf.d"; 8 # -T and -I are needed to get PERLLIB through to munin-run since it runs 9 # with taint checks. $^X is the currently-running perl 10 my $run = "$^X -T -I$ENV{PERLLIB} $PREFIX/sbin/munin-run --sconfdir=$ENV{PWD}/t/plugin-conf.d"; 9 11 10 12 sub run {
