diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-05-19 19:11:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-05-19 19:11:25 +0000 |
commit | 9ee33107689a653e8984bb485de6f4271b3d8897 (patch) | |
tree | 5c2f9e64b734afeea37c0eb71d856bc8f6d089f0 | |
parent | 5a7e1a187ca878bdea5a31cc2805b32a9ae662c0 (diff) | |
download | postgresql-9ee33107689a653e8984bb485de6f4271b3d8897.tar.gz postgresql-9ee33107689a653e8984bb485de6f4271b3d8897.zip |
Add get_pkglib_path to postmaster.c
-rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
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 */ |