diff -ruN dblatex-0.3.4-orig/setup.py dblatex-0.3.4/setup.py --- dblatex-0.3.4-orig/setup.py 2013-03-01 00:59:40.000000000 +0100 +++ dblatex-0.3.4/setup.py 2013-03-01 01:04:22.000000000 +0100 @@ -23,7 +23,6 @@ from distutils import log from subprocess import Popen, PIPE sys.path.append("lib") -from contrib.debian.installer import DebianInstaller # # Build the command line script @@ -365,12 +365,7 @@ raise OSError("not found: %s" % ", ".join(mis_stys)) def run(self): - if self.install_layout == "deb": - db = DebianInstaller(self) - else: - db = None - - if not(db) and not(self.nodeps): + if not(self.nodeps): try: self.check_xslt_dependencies() self.check_util_dependencies() @@ -379,16 +374,12 @@ print >>sys.stderr, "Error: %s" % e sys.exit(1) - if db: db.adapt_paths() - # If no build is required, at least build the script if self.skip_build: self.run_command('build_scripts') install.run(self) - if db: db.finalize() - class InstallData(install_data):