From 966a1d110871d4f4b3ba093291c890dbff602774 Mon Sep 17 00:00:00 2001 From: Sebastian Kuhnert Date: Thu, 28 Aug 2008 13:34:10 +0000 Subject: texall script: fix behaviour for -fS option combination --- texall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/texall b/texall index 0b612a5..6a14ccc 100755 --- a/texall +++ b/texall @@ -355,7 +355,7 @@ def processtexfiles(args): for bbl in bbls: bblpath = os.path.normpath(os.path.join(dirname, bbl)) bbltime = os.path.getmtime(bblpath) - if options.force or bbltime < bibtime: + if (options.force and not options.singlerun) or bbltime < bibtime: reason = "" if options.verbosity: if bbltime < bibtime: -- cgit v1.2.3