fix.diff 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. diff --git i/docs/reference/shell/meson.build w/docs/reference/shell/meson.build
  2. index 1469ed422..bf99c9446 100644
  3. --- i/docs/reference/shell/meson.build
  4. +++ w/docs/reference/shell/meson.build
  5. @@ -45,6 +45,7 @@ configure_file(
  6. gnome.gtkdoc('shell',
  7. main_sgml: 'shell-docs.sgml',
  8. + dependencies: [libshell_dep, libshell_menu_dep],
  9. src_dir: [
  10. join_paths(meson.source_root(), 'src'),
  11. join_paths(meson.build_root(), 'src')
  12. diff --git i/docs/reference/st/meson.build w/docs/reference/st/meson.build
  13. index fe89b53d4..8fdd4f4b5 100644
  14. --- i/docs/reference/st/meson.build
  15. +++ w/docs/reference/st/meson.build
  16. @@ -11,6 +11,7 @@ configure_file(
  17. gnome.gtkdoc('st',
  18. main_sgml: 'st-docs.sgml',
  19. + dependencies: libst_dep,
  20. src_dir: [
  21. join_paths(meson.source_root(), 'src', 'st'),
  22. join_paths(meson.build_root(), 'src', 'st')
  23. diff --git i/src/st/meson.build w/src/st/meson.build
  24. index 97ce6134d..216700fb7 100644
  25. --- i/src/st/meson.build
  26. +++ w/src/st/meson.build
  27. @@ -122,6 +122,7 @@ libst = shared_library('st-1.0',
  28. sources: st_gir_sources + st_non_gir_sources,
  29. c_args: st_cflags,
  30. dependencies: [clutter_dep, gtk_dep, croco_dep, x11_dep, m_dep],
  31. + build_rpath: mutter_typelibdir,
  32. install_rpath: mutter_typelibdir,
  33. install_dir: pkglibdir,
  34. install: true