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; rm.submit();'> Wojtek's customized Guixf='/guix/about/'>aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/autotools.scm
AgeCommit message (Expand)Author
2020-05-13mailmap: Update entries for Nikita....nikita
2020-04-23gnu: automake: Support cross-build....Jan (janneke) Nieuwenhuizen
2020-04-23gnu: autoconf: Support cross-build....Jan (janneke) Nieuwenhuizen
2020-03-27gnu: Automake: Remove version 1.16.1....Marius Bakke
2020-03-27Merge branch 'master' into core-updates...Marius Bakke
2020-03-24gnu: automake: Add version 1.16.2....Ludovic Courtès
2020-03-14Merge branch 'master' into core-updatesMarius Bakke
2020-03-13gnu: autobuild: Use HTTPS home page....Tobias Geerinckx-Rice
2020-03-04Merge branch 'master' into core-updatesMarius Bakke
2020-02-16gnu: autoconf: Use HTTPS home page....Tobias Geerinckx-Rice
2019-09-24gnu: libtool: Fix cross-compilation....Pierre-Moana Levesque