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; e='koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2019-10-05 19:30:13 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2019-10-05 22:23:42 +0200
commit07c1a10ef6cd24a0a02aefb281931fdd6fa3895e (patch)
treeea2767f1d750ccbe2278171e801985077203f972 /gnu/packages
parentd2fd037fd04623d626132501eb97bb73d74d0ef4 (diff)
downloadguix-07c1a10ef6cd24a0a02aefb281931fdd6fa3895e.tar.gz
guix-07c1a10ef6cd24a0a02aefb281931fdd6fa3895e.zip
gnu: axoloti-runtime: Don't use unstable tarball.
* gnu/packages/axoloti.scm (axoloti-runtime)[source]: Use GIT-FETCH and GIT-FILE-NAME. (axoloti-patcher)[arguments]: Add ‘make-git-checkout-writable’ phase.
Diffstat (limited to 'gnu/packages')