From: Joerg Jaspert Date: Wed, 19 Jan 2011 18:49:08 +0000 (+0100) Subject: Merge branch 'master' of ssh://franck.debian.org/srv/ftp.debian.org/git/dak X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=22b0b5b1963b6c298f6f619ad7cbbd262bf9ea77;hp=319aa4d75191d281e64332a846ac9ca20cce5396;p=dak.git Merge branch 'master' of ssh://franck.debian.org/srv/ftp.debian.org/git/dak * 'master' of ssh://franck.debian.org/srv/ftp.debian.org/git/dak: Extend test_poolfiles(). Add a test for PoolFile and Location. Mark Location.archive_type as obsolete. Carefully add a backref from PoolFile to Location. Add an incomplete test for Maintainer. Make relation Maintainer - DBSource bidirectional. TimestampTestCase: replace sql string by func.now. DBSource: drop property srcassociations. --- diff --git a/dak/copy_installer.py b/dak/copy_installer.py index 6bc86601..34ae3215 100755 --- a/dak/copy_installer.py +++ b/dak/copy_installer.py @@ -121,7 +121,7 @@ Architectures to skip: %(skip_arch_list)s""" % { def do_copy(self): for source, dest in self.trees_to_copy: - shutil.copytree(source, dest) + shutil.copytree(source, dest, symlinks=True) for source, dest in self.symlinks_to_create: if os.path.lexists(dest): os.unlink(dest)