Changeset 017ffce in mainline


Ignore:
Timestamp:
2024-01-05T19:31:05Z (4 months ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
master, topic/simplify-dev-export
Children:
88e188b2
Parents:
7b907a0a
Message:

export-dev: create common → libc symlink

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • meson.build

    r7b907a0a r017ffce  
    7676# Format: [ type, source_file, destination ]
    7777# See meson/part/exports/copy-export.sh for supported file types.
    78 exported_devel_files = []
     78exported_devel_files = [
     79    [ 'includenamedsymlink', 'libc', 'common' ]
     80]
    7981
    8082# Install script for headers.
  • meson/part/exports/copy-export.sh

    r7b907a0a r017ffce  
    5454            )
    5555            ;;
     56        includenamedsymlink)
     57            (
     58                cd "${target_dir}/include/" && ln -s "$2" "$3"
     59            )
     60            ;;
    5661        config)
    5762            cp -L "$2" "${target_dir}/$3"
Note: See TracChangeset for help on using the changeset viewer.