mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
73f56ae191
This simply makes it easier to browse the PostgreSQL package directory. More to come. Signed-off-by: Austin Seipp <aseipp@pobox.com>
15 lines
374 B
Diff
15 lines
374 B
Diff
diff --git a/src/port/exec.c b/src/port/exec.c
|
|
index c79e8ba..42c4091 100644
|
|
--- a/src/port/exec.c
|
|
+++ b/src/port/exec.c
|
|
@@ -216,6 +216,9 @@ find_my_exec(const char *argv0, char *retpath)
|
|
static int
|
|
resolve_symlinks(char *path)
|
|
{
|
|
+ // On NixOS we *want* stuff relative to symlinks.
|
|
+ return 0;
|
|
+
|
|
#ifdef HAVE_READLINK
|
|
struct stat buf;
|
|
char orig_wd[MAXPGPATH],
|