Changeset 3dd99dde in mainline


Ignore:
Timestamp:
2024-03-27T10:38:25Z (4 weeks ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
fd398b2c
Parents:
a29af37
git-author:
Jiri Svoboda <jiri@…> (2024-03-26 18:38:16)
git-committer:
Jiri Svoboda <jiri@…> (2024-03-27 10:38:25)
Message:

Fix export libraries list and helenos-pkg-config default export path

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tools/export.sh

    ra29af37 r3dd99dde  
    4343        uspace/lib/libc.a \
    4444        uspace/lib/libcongfx.a \
     45        uspace/lib/libconsole.a \
    4546        uspace/lib/libcpp.a \
    4647        uspace/lib/libdisplay.a \
     
    4849        uspace/lib/libgfxfont.a \
    4950        uspace/lib/libgfximage.a \
     51        uspace/lib/libinput.a \
    5052        uspace/lib/libhound.a \
    5153        uspace/lib/libipcgfx.a \
    5254        uspace/lib/libmath.a \
    5355        uspace/lib/libmemgfx.a \
     56        uspace/lib/liboutput.a \
    5457        uspace/lib/libpcm.a \
    5558        uspace/lib/libpixconv.a \
  • tools/xcw/bin/helenos-pkg-config

    ra29af37 r3dd99dde  
    9393    config = args.parse_args()
    9494
    95     export_dir = os.getenv('EXPORT_DIR', get_build_root())
     95    export_dir = os.getenv('EXPORT_DIR', get_build_root() + '/export')
    9696
    9797    result = []
  • uspace/lib/meson.build

    ra29af37 r3dd99dde  
    3333        'c',
    3434        'math',
     35        'console',
    3536        'display',
     37        'input',
     38        'output',
    3639        'pixconv',
    3740        'posix',
Note: See TracChangeset for help on using the changeset viewer.