diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-29 18:55:18 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-29 18:55:18 (EDT) |
commit | 7c129796c3020ce15fd1d218c9bdc41f4232d946 (patch) | |
tree | ea0e9afe0706da8f21ab91e0ca422df9c5e1454c | |
parent | f1a6880ff4e299ff8fde28dd9452149cb7f7c30b (diff) |
build: Fix static library removal
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ install: build # directory ln -sf libtcl$(V).so dest/usr/lib/$(OPK_HOST_ARCH)/libtcl$(V).so.0 # Remove static library. - rm dest/usr/lib/$(OPK_HOST_ARCH)/libtcl$(V).a + rm dest/usr/lib/$(OPK_HOST_ARCH)/*.a # Move tcl*Config.sh. mkdir -p dest/usr/lib/$(OPK_HOST_ARCH)/$(OPK_SOURCE) mv dest/usr/lib/$(OPK_HOST_ARCH)/tcl*Config.sh \ |