diff options
author | Eric Engestrom <[email protected]> | 2017-10-18 12:06:16 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-10-18 14:27:20 +0100 |
commit | 2515eb63f818eb4bcbe104718c9bfb2db6f77cc5 (patch) | |
tree | f035af00d51068931bdfcd77c4308448a6493d6a /src/intel/common | |
parent | 05fc62d89f59ce19a18bfd4e63a09624910d6caf (diff) |
meson: move expat dependency where it's needed
Suggested-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/intel/common')
-rw-r--r-- | src/intel/common/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/common/meson.build b/src/intel/common/meson.build index 6b0af929d9e..db7d74a26d2 100644 --- a/src/intel/common/meson.build +++ b/src/intel/common/meson.build @@ -40,6 +40,6 @@ libintel_common = static_library( files_libintel_common, include_directories : [inc_common, inc_intel], c_args : [c_vis_args, no_override_init_args], - dependencies : dep_libdrm, + dependencies : [dep_expat, dep_libdrm], build_by_default : false, ) |