Norm Jacobs
2011-08-03 b0fde7ff31ecff535512c51e9517be6d60c1ceff
7067302 no more CDDL'ng in Userland ('fix' path check)
7066892 Update coverage.py to a stable release version (fix license actions)
2 files modified
9 ■■■■■ changed files
components/python/coverage/coverage-26.p5m 7 ●●●● patch | view | raw | blame | history
tools/userland-mangler 2 ●●● patch | view | raw | blame | history
components/python/coverage/coverage-26.p5m
@@ -33,8 +33,11 @@
    value=http://arc.opensolaris.org/caselog/PSARC/2011/260
license coverage.copyright license=BSD
license jquery.copyright license=MIT
license jquery.isonscreen.copyright license=MIT
# the packaging software treats the license= attribute as the key, so
# we need to name them differently or the tools will fail to deal with
# the fact that they are really different license files.
license jquery.copyright license=MIT-1
license jquery.isonscreen.copyright license=MIT-2
dir path=usr
dir path=usr/bin
tools/userland-mangler
@@ -234,7 +234,7 @@
        for directory in search_paths:
            if directory != destination:
                src = os.path.join(directory, path)
                if os.path.exists(src):
                if os.path.isfile(src):
                    mangle_path(manifest, action, src, dest)
                    break