diff options
Diffstat (limited to 'main/postgresql/initdb.patch')
-rw-r--r-- | main/postgresql/initdb.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/main/postgresql/initdb.patch b/main/postgresql/initdb.patch new file mode 100644 index 0000000000..f2fad3f028 --- /dev/null +++ b/main/postgresql/initdb.patch @@ -0,0 +1,18 @@ +--- ./src/bin/initdb/initdb.c.orig ++++ ./src/bin/initdb/initdb.c +@@ -3317,14 +3317,6 @@ + strlcpy(bin_dir, argv[0], sizeof(bin_dir)); + get_parent_directory(bin_dir); + +- printf(_("\nSuccess. You can now start the database server using:\n\n" +- " %s%s%spostgres%s -D %s%s%s\n" +- "or\n" +- " %s%s%spg_ctl%s -D %s%s%s -l logfile start\n\n"), +- QUOTE_PATH, bin_dir, (strlen(bin_dir) > 0) ? DIR_SEP : "", QUOTE_PATH, +- QUOTE_PATH, pg_data_native, QUOTE_PATH, +- QUOTE_PATH, bin_dir, (strlen(bin_dir) > 0) ? DIR_SEP : "", QUOTE_PATH, +- QUOTE_PATH, pg_data_native, QUOTE_PATH); +- ++ printf(_("\nSuccess.\n\n")); + return 0; + } |