diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-04-12 02:28:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:59 -0500 |
commit | 3154dbd3acfa91e2a804cb721489ee4dae020c83 (patch) | |
tree | 02854205e9b280d10b05bf7952ce39ac3dcfa1b6 | |
parent | 4a94377b78e0859e181a6e20def9b40a760d5fc1 (diff) | |
download | samba-3154dbd3acfa91e2a804cb721489ee4dae020c83.tar.gz samba-3154dbd3acfa91e2a804cb721489ee4dae020c83.tar.bz2 samba-3154dbd3acfa91e2a804cb721489ee4dae020c83.zip |
r22183: Perl might not be in /usr/bin/perl, so use $(PERL) from the makefile
to start the selftest script.
Andrew Bartlett
(This used to be commit 6cb621b41990717a1c803ddc74955b328c164405)
-rw-r--r-- | source4/main.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/main.mk b/source4/main.mk index f7c2495832..337b5a810b 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -283,7 +283,7 @@ realdistclean: distclean removebackup check:: test -SELFTEST = $(srcdir)/script/tests/selftest.pl --prefix=${selftest_prefix} \ +SELFTEST = $(PERL) $(srcdir)/script/tests/selftest.pl --prefix=${selftest_prefix} \ --builddir=$(builddir) --srcdir=$(srcdir) \ --expected-failures=$(srcdir)/samba4-knownfail \ --skip=$(srcdir)/samba4-skip \ |