Changes in tools/export.sh [db3c6795:3dd99dde] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/export.sh
rdb3c6795 r3dd99dde 42 42 uspace/lib/libclui.a \ 43 43 uspace/lib/libc.a \ 44 uspace/lib/libcongfx.a \ 45 uspace/lib/libconsole.a \ 44 46 uspace/lib/libcpp.a \ 45 47 uspace/lib/libdisplay.a \ … … 47 49 uspace/lib/libgfxfont.a \ 48 50 uspace/lib/libgfximage.a \ 51 uspace/lib/libinput.a \ 49 52 uspace/lib/libhound.a \ 50 53 uspace/lib/libipcgfx.a \ 51 54 uspace/lib/libmath.a \ 52 55 uspace/lib/libmemgfx.a \ 56 uspace/lib/liboutput.a \ 53 57 uspace/lib/libpcm.a \ 54 58 uspace/lib/libpixconv.a \ … … 66 70 ninja devel-headers 67 71 72 # 73 # Meson may produce thin archives. These cannot be simply copied to another 74 # location. Copy them using ar instead, converting them to regular, 75 # non-thin archives in the process. 76 # 68 77 mkdir -p "$EXPORT_DIR/lib" 69 cp -t "$EXPORT_DIR/lib" $EXPORT_LIBS 78 for lpath in $EXPORT_LIBS; do 79 dest="$EXPORT_DIR/lib/$(basename $lpath)" 80 ar -t $lpath | xargs ar crs $dest 81 done 82 70 83 rm -rf "$EXPORT_DIR/include" 71 84 cp -R dist/include "$EXPORT_DIR/include"
Note:
See TracChangeset
for help on using the changeset viewer.