Bug 1379537 - Fix InstallManifestNoSymlinks to not install symlinks. r=glandium

This commit is contained in:
Philip Chimento 2017-07-21 20:13:34 -07:00
parent eafe13d61a
commit fb83555684

View File

@ -410,3 +410,10 @@ class InstallManifestNoSymlinks(InstallManifest):
source will be copied to dest.
"""
self.add_copy(source, dest)
def add_pattern_symlink(self, base, pattern, dest):
"""A wrapper that accepts symlink patterns and installs file copies.
Files discovered with ``pattern`` will be copied to ``dest``.
"""
self.add_pattern_copy(base, pattern, dest)