diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2014-03-03 08:46:01 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2014-03-03 08:46:01 -0800 |
commit | d0b611041d8ad79dd0a102833885f984d5a16ad6 (patch) | |
tree | d6e52a96f3e14909ae5bd6cdb4c04598f3ecac63 /files.c | |
parent | 63b65ddce0396ef7b9b2f8e5bfd877c2a227155c (diff) |
334.21334.21
Diffstat (limited to 'files.c')
-rw-r--r-- | files.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -574,8 +574,13 @@ int set_destinations(Options *op, Package *p) case FILE_TYPE_UTILITY_LIB: case FILE_TYPE_UTILITY_LIB_SYMLINK: - prefix = op->utility_prefix; - dir = op->utility_libdir; + if (p->entries[i].compat_arch == FILE_COMPAT_ARCH_COMPAT32) { + prefix = op->compat32_prefix; + dir = op->compat32_libdir; + } else { + prefix = op->utility_prefix; + dir = op->utility_libdir; + } path = ""; break; |