[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/lib/mesa][debian-unstable] 3 commits: meson: remove meson-created megadrivers symlinks



Title: GitLab

Andreas Boll pushed to branch debian-unstable at X Strike Force / lib / mesa

Commits:

2 changed files:

Changes:

  • bin/install_megadrivers.py
    ... ... @@ -70,7 +70,14 @@ def main():
    70 70
                     name, ext = os.path.splitext(name)
    
    71 71
             finally:
    
    72 72
                 os.chdir(ret)
    
    73
    +
    
    74
    +    # Remove meson-created master .so and symlinks
    
    73 75
         os.unlink(master)
    
    76
    +    name, ext = os.path.splitext(master)
    
    77
    +    while ext != '.so':
    
    78
    +        if os.path.lexists(name):
    
    79
    +            os.unlink(name)
    
    80
    +        name, ext = os.path.splitext(name)
    
    74 81
     
    
    75 82
     
    
    76 83
     if __name__ == '__main__':
    

  • debian/changelog
    1
    +mesa (18.3.6-2) unstable; urgency=medium
    
    2
    +
    
    3
    +  * Cherry-pick c77acc3ceba (meson: remove meson-created megadrivers
    
    4
    +    symlinks) from upstream master branch. Removes a broken symlink
    
    5
    +    (Closes: #926857).
    
    6
    +
    
    7
    + -- Andreas Boll <aboll@debian.org>  Sat, 11 May 2019 15:43:07 +0200
    
    8
    +
    
    1 9
     mesa (18.3.6-1) unstable; urgency=medium
    
    2 10
     
    
    3 11
       [ Timo Aaltonen ]
    


  • Reply to: