diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-05-18 23:07:45 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-05-18 23:07:45 (EDT) |
commit | efb50ef9e4809a691b257686c2056e1fdefd0a90 (patch) | |
tree | 6ff984e7f24032200fc4f3e0c0a78af0907a4478 | |
parent | 35bc107376a25fb00302126be6df82249dab32c7 (diff) |
build: Install compiler files before library files
-rwxr-xr-x | build | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -245,11 +245,13 @@ install-native: oh-fixperms -d "$(destdir)" oh-strip -d "$(destdir)" OPK_PACKAGES="\ - $$(printf '%s\n' $${OPK_PACKAGES} | \ - grep -Ev "(gcc|g++)-$(base_version)-.*-.*-.*") \ gcc-$(base_version)-$(target) \ g++-$(base_version)-$(target) \ " oh-installfiles -d "$(destdir)" + OPK_PACKAGES="\ + $$(printf '%s\n' $${OPK_PACKAGES} | \ + grep -Ev "(gcc|g++)-$(base_version)-.*-.*-.*") \ + " oh-installfiles -d "$(destdir)" oh-shlibdeps install-cross: |