diff --git a/src/common/exec.c b/src/common/exec.c index f209b93..ed42202 100644 --- a/src/common/exec.c +++ b/src/common/exec.c @@ -238,6 +238,14 @@ find_my_exec(const char *argv0, char *retpath) static int normalize_exec_path(char *path) { + /* + * Guix specific patch: postgresql extensions need to be located in the + * same directory as postgresql. + * In Guix we currently use directory-unions to create extended postgresql + * packages. Directory unions use symlinks, that's why we need to be able + * to use symlinks. + */ + return 0; /* * We used to do a lot of work ourselves here, but now we just let * realpath(3) do all the heavy lifting. -- 2.46.0 option value='koszko' selected='selected'>koszko Wojtek's customized Guix aboutsummaryrefslogtreecommitdiff
path: root/tests/ipfs.scm
e. (sys_authorize_build_farms): Remove trailing space from the message argument. * NEWS (Distribution): Add news.
AgeCommit message (Expand2021-04-12Add (guix ipfs)....This module allows for communicating with the IPFS gateway over the HTTP interface. The commit has been cherry-picked from <https://issues.guix.gnu.org/33899>. The procedures for adding and restoring file trees have been removed as according to a reply issue 33899, a different format will be used. The procedure 'add-data' has been exported as it will be used in the system test for IPFS. * guix/ipfs.scm: New file. * Makefile.am (MODULES): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Ludovic Courtès
Maxim Cournoyer
2020-03-11Add system start-up files for guix-daemon....* etc/init.d/guix-daemon.in: New file. * nix/local.mk (etc/init.d/guix-daemon): New rule. (nodist_sysvinitservice_DATA): Add etc/init.d/guix-daemon.in . (CLEANFILES): Add etc/init.d/guix-daemon . * .gitignore: Add etc/init.d/guix-daemon . Danny Milosavljevic