diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-02 00:45:45 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-02 00:45:45 (EDT) |
commit | 0723a9cbcc490c79c7f38c6f190ff274a66a8b10 (patch) | |
tree | 04ba5aea924f9f76eb03b9545a17261070585946 | |
parent | 1f3bd019568ecbffcc9791e694a1d03af3db7509 (diff) |
build: Fix static library and libtool archive removal
-rwxr-xr-x | build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,8 +13,8 @@ build: install: build oh-autoinstall - rm -fv dest/usr/lib/amd64-linux-glibc/libfl.a - rm -fv dest/usr/lib/amd64-linux-glibc/libfl.la + rm -fv dest/usr/lib/$(OPK_HOST_ARCH)/libfl.a + rm -fv dest/usr/lib/$(OPK_HOST_ARCH)/libfl.la set -e; for f in AUTHORS COPYING NEWS ONEWS README.md; do \ rm -fv "dest/usr/share/doc/flex/$${f}"; \ done |