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>
13 lines
320 B
Diff
13 lines
320 B
Diff
--- a/src/common/exec.c 2014-09-04 20:19:12.236057588 +0200
|
|
+++ b/src/common/exec.c 2014-09-04 20:19:50.550251633 +0200
|
|
@@ -218,6 +218,9 @@
|
|
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],
|