Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/core/pacman/pacman-trailing-slash-muon.patch
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2025-03-24 17:12:30 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2025-03-24 17:12:30 +0100
commit892395d8062730eebefe46a75cbcfc1f785eda16 (patch)
treec90f65ca97a4ebd0bd2f69bda35aad1066ef2440 /core/pacman/pacman-trailing-slash-muon.patch
parent3563d626e85e1c6d2d0cd7c4479205c8c9c60b35 (diff)
core/pacman: rebuilding normallyHEADmaster
Diffstat (limited to 'core/pacman/pacman-trailing-slash-muon.patch')
-rw-r--r--core/pacman/pacman-trailing-slash-muon.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/core/pacman/pacman-trailing-slash-muon.patch b/core/pacman/pacman-trailing-slash-muon.patch
deleted file mode 100644
index 4b3c393f..00000000
--- a/core/pacman/pacman-trailing-slash-muon.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -rauN pacman-orig/meson.build pacman-trailing-slash-muon-patch/meson.build
---- pacman-orig/meson.build 2025-03-20 17:46:34.979754357 +0100
-+++ pacman-trailing-slash-muon-patch/meson.build 2025-03-20 17:47:38.620712716 +0100
-@@ -68,13 +68,13 @@
- conf.set_quoted('SCRIPTLET_SHELL', get_option('scriptlet-shell'))
- conf.set_quoted('LDCONFIG', LDCONFIG)
- conf.set_quoted('LIB_VERSION', libalpm_version)
--conf.set_quoted('SYSHOOKDIR', join_paths(DATAROOTDIR, 'libalpm/hooks/'))
-+conf.set_quoted('SYSHOOKDIR', join_paths(DATAROOTDIR, 'libalpm/hooks/') + '/')
- conf.set_quoted('CONFFILE', join_paths(SYSCONFDIR, 'pacman.conf'))
--conf.set_quoted('DBPATH', join_paths(LOCALSTATEDIR, 'lib/pacman/'))
--conf.set_quoted('GPGDIR', join_paths(SYSCONFDIR, 'pacman.d/gnupg/'))
-+conf.set_quoted('DBPATH', join_paths(LOCALSTATEDIR, 'lib/pacman/') + '/')
-+conf.set_quoted('GPGDIR', join_paths(SYSCONFDIR, 'pacman.d/gnupg/') + '/')
- conf.set_quoted('LOGFILE', join_paths(LOCALSTATEDIR, 'log/pacman.log'))
--conf.set_quoted('CACHEDIR', join_paths(LOCALSTATEDIR, 'cache/pacman/pkg/'))
--conf.set_quoted('HOOKDIR', join_paths(SYSCONFDIR, 'pacman.d/hooks/'))
-+conf.set_quoted('CACHEDIR', join_paths(LOCALSTATEDIR, 'cache/pacman/pkg/') +'/')
-+conf.set_quoted('HOOKDIR', join_paths(SYSCONFDIR, 'pacman.d/hooks/') + '/')
- conf.set_quoted('ROOTDIR', ROOTDIR)
-
- libintl = dependency('', required: false)