diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-11-19 01:16:44 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-11-19 22:11:41 +0100 |
commit | e974950d48e4e8b9500acbeadf9c1abdab1dec72 (patch) | |
tree | fb03f547f30c1683c9d8dcc7cbedb41afd720870 | |
parent | 9efdd7232c79efd65a50cb46194ccbc1aab86e6e (diff) | |
download | MultiMC-e974950d48e4e8b9500acbeadf9c1abdab1dec72.tar MultiMC-e974950d48e4e8b9500acbeadf9c1abdab1dec72.tar.gz MultiMC-e974950d48e4e8b9500acbeadf9c1abdab1dec72.tar.lz MultiMC-e974950d48e4e8b9500acbeadf9c1abdab1dec72.tar.xz MultiMC-e974950d48e4e8b9500acbeadf9c1abdab1dec72.zip |
GH-1699 do not include libxcb.so* in linux builds
-rw-r--r-- | application/install_prereqs.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/install_prereqs.cmake.in b/application/install_prereqs.cmake.in index c10882ac..7f283c89 100644 --- a/application/install_prereqs.cmake.in +++ b/application/install_prereqs.cmake.in @@ -4,7 +4,7 @@ file(GLOB_RECURSE QTPLUGINS "${CMAKE_INSTALL_PREFIX}/@PLUGIN_DEST_DIR@/*@CMAKE_S function(gp_resolved_file_type_override resolved_file type_var) if(resolved_file MATCHES "^/(usr/)?lib/libQt") set(${type_var} other PARENT_SCOPE) - elseif(resolved_file MATCHES "^/(usr/)?lib(.+)?/libxcb") + elseif(resolved_file MATCHES "^/(usr/)?lib(.+)?/libxcb-") set(${type_var} other PARENT_SCOPE) elseif(resolved_file MATCHES "^/(usr/)?lib(.+)?/libicu") set(${type_var} other PARENT_SCOPE) |