Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flathub/shared-modules.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompsę™Ūn <wjt@endlessos.org>2022-11-01 12:40:01 +0300
committerPatrick <tingping@tingping.se>2022-11-01 19:32:18 +0300
commit521d2fc7f63784ff00f89e8f0cf2439ea14a0c88 (patch)
tree317ff0a30c5324c9db3648a57624f994ec21870a
parenta9112b9c62e2b84db4c2f6c55c9531fd7e8d03c1 (diff)
lua: Actually clean up manpages
For reasons unknown, Lua does not install its manpages to $PREFIX/share/man, but to $PREFIX/man. The lua5.1 module already listed "/man" rather than "/share/man" in its cleanups.
-rw-r--r--lua5.3/lua-5.3.5.json2
-rw-r--r--lua5.4/lua-5.4.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/lua5.3/lua-5.3.5.json b/lua5.3/lua-5.3.5.json
index c789fd6..7f57197 100644
--- a/lua5.3/lua-5.3.5.json
+++ b/lua5.3/lua-5.3.5.json
@@ -41,6 +41,6 @@
"/bin",
"/include",
"/lib/pkgconfig",
- "/share/man"
+ "/man"
]
}
diff --git a/lua5.4/lua-5.4.json b/lua5.4/lua-5.4.json
index a164fb8..e8dd5ce 100644
--- a/lua5.4/lua-5.4.json
+++ b/lua5.4/lua-5.4.json
@@ -39,6 +39,6 @@
"/bin",
"/include",
"/lib/pkgconfig",
- "/share/man"
+ "/man"
]
}