diff options
Diffstat (limited to 'tests/date')
-rw-r--r-- | tests/date/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/date/Makefile.in b/tests/date/Makefile.in index 5c70ede63..192e22397 100644 --- a/tests/date/Makefile.in +++ b/tests/date/Makefile.in @@ -294,6 +294,9 @@ ns-relative.E EXTRA_DIST = Test.pm $x-tests $(explicit) $(maint_gen) noinst_SCRIPTS = $x-tests +TESTS_ENVIRONMENT = \ + PATH="`pwd`/../../src$(PATH_SEPARATOR)$$PATH" + editpl = sed -e 's,@''PERL''@,$(PERL),g' -e 's,@''srcdir''@,$(srcdir),g' TESTS = $x-tests mk_script = $(srcdir)/../mk-script @@ -525,8 +528,9 @@ uninstall-am: uninstall-info-am mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-info-am -$(srcdir)/$x-tests: $(mk_script) Test.pm - $(PERL) -I$(srcdir) -w -- $(mk_script) $(srcdir) ../../src/$x > $@.n +$(srcdir)/$x-tests: $(mk_script) Test.pm Makefile.am + test '$x' = test && prog=../../src/$x || prog=$x; \ + $(PERL) -I$(srcdir) -w -- $(mk_script) $(srcdir) $$prog > $@.n mv $@.n $@ chmod 755 $@ |