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

[Git][xorg-team/lib/mesa][debian-unstable] 2 commits: dri: meson: do not prefix user provided dri-drivers-path



Title: GitLab

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

Commits:

3 changed files:

Changes:

  • debian/changelog
    1
    +mesa (18.3.4-2) UNRELEASED; urgency=medium
    
    2
    +
    
    3
    +  * Cherry-pick f6556ec7d12 (dri: meson: do not prefix user provided dri-
    
    4
    +    drivers-path) from upstream master branch. Fixes a regression since
    
    5
    +    switching to meson (Closes: #922807).
    
    6
    +
    
    7
    + -- Andreas Boll <aboll@debian.org>  Thu, 28 Feb 2019 11:45:35 +0100
    
    8
    +
    
    1 9
     mesa (18.3.4-1) unstable; urgency=medium
    
    2 10
     
    
    3 11
       * New upstream release.
    

  • meson.build
    ... ... @@ -64,11 +64,11 @@ endif
    64 64
     
    
    65 65
     dri_drivers_path = get_option('dri-drivers-path')
    
    66 66
     if dri_drivers_path == ''
    
    67
    -  dri_drivers_path = join_paths(get_option('libdir'), 'dri')
    
    67
    +  dri_drivers_path = join_paths(get_option('prefix'), get_option('libdir'), 'dri')
    
    68 68
     endif
    
    69 69
     dri_search_path = get_option('dri-search-path')
    
    70 70
     if dri_search_path == ''
    
    71
    -  dri_search_path = join_paths(get_option('prefix'), dri_drivers_path)
    
    71
    +  dri_search_path = dri_drivers_path
    
    72 72
     endif
    
    73 73
     
    
    74 74
     with_gles1 = get_option('gles1')
    

  • src/mesa/drivers/dri/meson.build
    ... ... @@ -78,7 +78,7 @@ if with_dri
    78 78
         filebase : 'dri',
    
    79 79
         description : 'Direct Rendering Infrastructure',
    
    80 80
         version : meson.project_version(),
    
    81
    -    variables : ['dridriverdir=${prefix}/' + dri_drivers_path],
    
    81
    +    variables : ['dridriverdir=' + dri_drivers_path],
    
    82 82
         requires_private : dri_req_private,
    
    83 83
       )
    
    84 84
     endif


  • Reply to: