Lookup gzdoom pk3 files in the installed directory in addition to the path that is stored in ~/.config/gzdoom/. Simply replacing the hardcoded /usr/share would leave the configfile pointing to outdated guix builds, which could get garbage collected and break the gzdoom installation. This ensures that the files installed with the corresponding build will be used. --- /src/d_main.cpp 2018-01-16 22:13:09.700602781 +0200 +++ /src/d_main.cpp 2018-01-16 22:22:36.560617961 +0200 @@ -1716,6 +1716,11 @@ return wad; } + mysnprintf (wad, countof(wad), "%s/%s", GUIX_OUT_PK3, file); + if (DirEntryExists (wad)) { + return wad; + } + if (GameConfig != NULL && GameConfig->SetSection ("FileSearch.Directories")) { const char *key; ko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/batik.scm
tial-texinfo-menu-fix.patch: Same as above. Change-Id: Iefe13931415409e30d8da982dccc6e1adf1b2984 Signed-off-by: Christopher Baines <mail@cbaines.net>
AgeCommit message (Expand)Author
2023-08-28gnu: Add java-libbatik....* gnu/packages/batik.scm (java-libbatik): New variable. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Frank Pursel
gemmaro
2024-08-31gnu: po4a: Enable SGML format....* gnu/packages/gettext.scm (po4a): Enable SGML format. [arguments]<phases>: Remove disable-failing-tests phase. [native-inputs]: Add docbook-sgml-4.1. Remove libxml2. [inputs]: Add opensp. Modified-by: Bruno Victal <mirai@makinata.eu> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> gemmaro
2024-05-13gnu: Add po4a-minimal....The main reason is to avoid the texlive-updmap.cfg input indirectly pulling in nss, which has a very time consuming testsuite. * gnu/packages/gettext.scm (po4a-minimal): New variable. Change-Id: If8d46a18a02e57d5427852e8e122de01f970ded4 Christopher Baines