summarylogtreecommitdiffstats
path: root/fix-meson-no-install.patch
diff options
context:
space:
mode:
authorSolomon Choina2021-09-27 15:09:12 -0400
committerSolomon Choina2021-09-27 15:09:12 -0400
commit5572706c03dd48f5eaf82b21b252becfeecfc5e4 (patch)
treed4ae12f744bad4a223b8c67603d5abac50c50041 /fix-meson-no-install.patch
parentb986d5eec61ceea57603ae544d0037cc839995f0 (diff)
downloadaur-5572706c03dd48f5eaf82b21b252becfeecfc5e4.tar.gz
updpkgver and fix stuff
Diffstat (limited to 'fix-meson-no-install.patch')
-rw-r--r--fix-meson-no-install.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/fix-meson-no-install.patch b/fix-meson-no-install.patch
deleted file mode 100644
index 2e67682b4e62..000000000000
--- a/fix-meson-no-install.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff --git a/example/oomd.json b/example/oomd.json
-index 664aed5..859f4ba 100644
---- a/example/oomd.json
-+++ b/example/oomd.json
-@@ -7,7 +7,7 @@
- {"sshd.service": { "max_usage": "inf" } }
- ],
- "oomdetector": "default",
-- "oomkiller": "fbje"
-+ "oomkiller": "default"
- },
- {
- "target": "workload.slice",
-diff --git a/meson.build b/meson.build
-index f12f067..2842453 100644
---- a/meson.build
-+++ b/meson.build
-@@ -39,14 +39,16 @@ srcs = files('''
-
- deps = [dependency('jsoncpp'),
- dependency('threads')]
--oomd_lib = library('oomd',
-+oomd_lib = shared_library('oomd',
- srcs,
- include_directories : inc,
-+ install: true,
- dependencies : deps)
- executable('oomd_bin',
- files('Main.cpp'),
- include_directories : inc,
- dependencies : deps,
-+ install: true,
- link_with : oomd_lib)
-
- gtest_dep = dependency('gtest', main : true, required : false)