diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-05-18 22:04:35 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-05-18 22:04:35 (EDT) |
commit | 82cc872509c77d0b6ac9d6565ddd76c81532a799 (patch) | |
tree | 5a229eac5bc6c8297c6c3bf4e84f3fb64349b103 /build | |
parent | fda4eff0d2f19a41e2ecd413b6cd875b7021c8a9 (diff) |
build: Fix target type
Diffstat (limited to 'build')
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -289,7 +289,7 @@ install_$(target): install-$(type) configure build install: set -e; \ for tgt in $(targets); do \ - if [ x"$${target}" = x'$(OPK_HOST_ARCH)' ]; then \ + if [ x"$${tgt}" = x'$(OPK_HOST_ARCH)' ]; then \ type='native'; \ else \ type='cross'; \ |