Changes in tools/export.sh [3dd99dde:db3c6795] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/export.sh

    r3dd99dde rdb3c6795  
    4242        uspace/lib/libclui.a \
    4343        uspace/lib/libc.a \
    44         uspace/lib/libcongfx.a \
    45         uspace/lib/libconsole.a \
    4644        uspace/lib/libcpp.a \
    4745        uspace/lib/libdisplay.a \
     
    4947        uspace/lib/libgfxfont.a \
    5048        uspace/lib/libgfximage.a \
    51         uspace/lib/libinput.a \
    5249        uspace/lib/libhound.a \
    5350        uspace/lib/libipcgfx.a \
    5451        uspace/lib/libmath.a \
    5552        uspace/lib/libmemgfx.a \
    56         uspace/lib/liboutput.a \
    5753        uspace/lib/libpcm.a \
    5854        uspace/lib/libpixconv.a \
     
    7066ninja devel-headers
    7167
    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 #
    7768mkdir -p "$EXPORT_DIR/lib"
    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 
     69cp -t "$EXPORT_DIR/lib" $EXPORT_LIBS
    8370rm -rf "$EXPORT_DIR/include"
    8471cp -R dist/include "$EXPORT_DIR/include"
Note: See TracChangeset for help on using the changeset viewer.