From: Torsten Werner Date: Thu, 20 Jan 2011 17:27:52 +0000 (+0100) Subject: Merge branch 'master' of ssh://ftp-master.debian.org/srv/ftp.debian.org/git/dak X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=c9cd9c10d366f15d38ca2cb63e64606b4eef55fc;hp=b330cb76fe5d7067655b34b755de70c6a26643d9;p=dak.git Merge branch 'master' of ssh://ftp-master.debian.org/srv/ftp.debian.org/git/dak --- 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)