aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-05-19 19:11:25 +0000
committerBruce Momjian <bruce@momjian.us>2004-05-19 19:11:25 +0000
commit9ee33107689a653e8984bb485de6f4271b3d8897 (patch)
tree5c2f9e64b734afeea37c0eb71d856bc8f6d089f0
parent5a7e1a187ca878bdea5a31cc2805b32a9ae662c0 (diff)
downloadpostgresql-9ee33107689a653e8984bb485de6f4271b3d8897.tar.gz
postgresql-9ee33107689a653e8984bb485de6f4271b3d8897.zip
Add get_pkglib_path to postmaster.c
-rw-r--r--src/backend/postmaster/postmaster.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 645bccff48e..2abb4abb957 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.391 2004/05/19 18:58:44 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.392 2004/05/19 19:11:25 momjian Exp $
*
* NOTES
*
@@ -466,6 +466,8 @@ PostmasterMain(int argc, char *argv[])
gettext("%s: could not locate my own executable path"),
argv[0]);
+ get_pkglib_path(my_exec_path, pkglib_path);
+
/*
* Options setup
*/