a5082c8a6a
Fri Jun 20 2003 Jens Petersen <petersen@redhat.com> - 3.1.8-46 - add at-3.1.8-atrun.8-typo-97697.patch to fix typo in atrun.8 (#97697) - update at.1 description of shell behaviour (#91233) Tue Jun 17 2003 Jens Petersen <petersen@redhat.com> - 3.1.8-45 - make the job shell default to SHELL instead of "/bin/sh" (#91233) Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> - 3.1.8-44 - rebuilt Tue Jun 03 2003 Jens Petersen <petersen@redhat.com> - 3.1.8-43 - Replace redundant at-3.1.7-paths.patch by at-3.1.8-man-timespec-path.patch to fix timespec path Tue Jun 03 2003 Jens Petersen <petersen@redhat.com> - 3.1.8-41 - update source to at_3.1.8-11 from debian upstream - update source url - at-debian.patch no longer needed - at-3.1.7-paths.patch: the patch to "at.1.in" no longer needed - replace at-3.1.8-lexer.patch with at-3.1.8-11-lexer-parser.diff - at-3.1.8-dst.patch no longer needed - at-3.1.8-lsbdoc.patch no longer needed - at-3.1.8-o_excl.patch no longer needed - bump release number - at-3.1.8-test.patch: move out test.pl to a separate source file - apply at-3.1.8-test-fix.patch to it and drop patch - at-3.1.8-shell.patch: drop (#22216,#91233) - run "make test" after building - add "--without check" rpmbuild option - fix autoconf comment to point to right patch - use _sysconfdir, _sbindir, _bindir, and _localstatedir
24 lines
750 B
Diff
24 lines
750 B
Diff
diff -u at-3.1.8/Makefile.in.orig at-3.1.8/Makefile.in
|
|
--- at-3.1.8/Makefile.in.orig Wed Feb 14 13:59:09 2001
|
|
+++ at-3.1.8/Makefile.in Mon Feb 19 14:48:42 2001
|
|
@@ -51,6 +51,8 @@
|
|
|
|
OTHERS = parsetime.l parsetime.y
|
|
|
|
+TEST_VERBOSE = 0
|
|
+
|
|
DOCS = Problems Copyright README ChangeLog timespec
|
|
|
|
MISC = COPYING Makefile.in configure acconfig.h install-sh \
|
|
@@ -150,6 +152,9 @@
|
|
|
|
parsetest: lex.yy.c y.tab.c
|
|
$(CC) -o parsetest $(CFLAGS) $(DEFS) -DTEST_PARSER -DNEED_YYWRAP lex.yy.c y.tab.c
|
|
+
|
|
+test: parsetest
|
|
+ PERL_DL_NONLAZY=1 perl -e 'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' test.pl
|
|
|
|
.depend: $(CSRCS)
|
|
gcc $(CFLAGS) $(DEFS) -MM $(CSRCS) > .depend
|
|
diff -u at-3.1.8/test.pl.orig at-3.1.8/test.pl
|