Changeset c561d205 in mainline


Ignore:
Timestamp:
2025-04-25T15:55:33Z (6 months ago)
Author:
Matěj Volf <git@…>
Parents:
33c08929
git-author:
Matěj Volf <git@…> (2025-04-25 15:55:17)
git-committer:
Matěj Volf <git@…> (2025-04-25 15:55:33)
Message:

clean code

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • meson/part/exports/copy-export.sh

    r33c08929 rc561d205  
    4949            major_versioned_name="$3"
    5050            # libfoo.so.5 -> libfoo.so (remove the last part delimited by dot)
    51             unversioned_name="$(echo "$major_versioned_name" | rev | cut -d. -f2- | rev)"
     51            unversioned_name="${major_versioned_name%.[0-9]*}"
    5252            cp -L "$2" "${target_dir}/lib/$filename"
    5353            ln -s "$filename" "${target_dir}/lib/$major_versioned_name"
  • uspace/lib/dltest/meson.build

    r33c08929 rc561d205  
    2828
    2929allow_shared = true
     30
    3031src = files(
    3132        'dltest.c',
  • uspace/lib/inet/meson.build

    r33c08929 rc561d205  
    2727#
    2828
     29allow_shared = true
     30
    2931src = files(
    3032        'src/addr.c',
     
    5052        'test/main.c',
    5153)
    52 allow_shared = true
  • uspace/lib/posix/meson.build

    r33c08929 rc561d205  
    3030includes += include_directories('include/posix', 'include')
    3131c_args += [ '-fno-builtin', '-D_XOPEN_SOURCE' ]
     32
     33allow_shared = true
    3234
    3335# TODO
     
    7173exported_devel_files += [ 'include', meson.current_source_dir() / 'include' / 'posix', 'libposix' ]
    7274exported_devel_files += [ 'includesymlink', 'libc', 'libposix' ]
    73 allow_shared = true
Note: See TracChangeset for help on using the changeset viewer.