diff options
author | Bruce Momjian | 2005-06-04 18:13:59 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-06-04 18:13:59 +0000 |
commit | 33e6536f0495c1c35abb3bdb77d3ef99d708dcd0 (patch) | |
tree | 0cd8e73af19c1dcdad302d83760c8ef63103e402 | |
parent | e5bf057382c2aa8adfb76d2b07ef590cee58d1a6 (diff) |
Improve readability of config location params by adding newline.
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 1 | ||||
-rwxr-xr-x | src/tools/make_mkid | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 88272d35b5..0e88d4c5ed 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -31,6 +31,7 @@ # The default values of these variables are driven from the -D command line # switch or PGDATA environment variable, represented here as ConfigDir. + # data_directory = 'ConfigDir' # use data in another directory # hba_file = 'ConfigDir/pg_hba.conf' # the host-based authentication file # ident_file = 'ConfigDir/pg_ident.conf' # the IDENT configuration file diff --git a/src/tools/make_mkid b/src/tools/make_mkid index ac71bd92b5..13a848a7ee 100755 --- a/src/tools/make_mkid +++ b/src/tools/make_mkid @@ -1,9 +1,10 @@ -#!/bin/sh +: mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \ -type f -name '*.[chyl]' -print|sed 's;//;/;g'` -find . -name 'CVS' -prune -o -type d -print |while read DIR +find . \( -name 'CVS' -prune -o -name '_xlk' -prune \) -o -type d -print | +while read DIR do [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID done |