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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/export.sh

    r3dd99dde rdbf1be5  
    4343        uspace/lib/libc.a \
    4444        uspace/lib/libcongfx.a \
    45         uspace/lib/libconsole.a \
    4645        uspace/lib/libcpp.a \
    4746        uspace/lib/libdisplay.a \
     
    4948        uspace/lib/libgfxfont.a \
    5049        uspace/lib/libgfximage.a \
    51         uspace/lib/libinput.a \
    5250        uspace/lib/libhound.a \
    5351        uspace/lib/libipcgfx.a \
    5452        uspace/lib/libmath.a \
    5553        uspace/lib/libmemgfx.a \
    56         uspace/lib/liboutput.a \
    5754        uspace/lib/libpcm.a \
    5855        uspace/lib/libpixconv.a \
     
    7067ninja devel-headers
    7168
    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 #
    7769mkdir -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 
     70cp -t "$EXPORT_DIR/lib" $EXPORT_LIBS
    8371rm -rf "$EXPORT_DIR/include"
    8472cp -R dist/include "$EXPORT_DIR/include"
Note: See TracChangeset for help on using the changeset viewer.