#! /bin/sh /usr/share/dpatch/dpatch-run ## 10_no_TEXINPUTS_manipulation.dpatch by Andreas Hoenen ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Fix for bug report #470209: ## DP: Don't ignore a possible setting of TEXINPUTS by the calling user. @DPATCH@ diff -urNad dblatex-0.2.8~/lib/dbtexmf/core/dbtex.py dblatex-0.2.8/lib/dbtexmf/core/dbtex.py --- dblatex-0.2.8~/lib/dbtexmf/core/dbtex.py 2008-05-17 10:59:49.000000000 +0200 +++ dblatex-0.2.8/lib/dbtexmf/core/dbtex.py 2008-05-17 11:12:54.000000000 +0200 @@ -260,7 +260,10 @@ self.build_stylesheet() # Refresh the TEXINPUTS - self.update_texinputs() + # Debian: Omit this call (compare BTS report #470209): + # - Superfluous + # - Don't ignore a possible setting by the calling user. + # self.update_texinputs() # For easy debug if self.debug and os.environ.has_key("TEXINPUTS"):