|
27 | 27 | # Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
28 | 28 | # Portions Copyright (c) 1994, Regents of the University of California
|
29 | 29 | #
|
30 |
| -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.202 2003/09/2709:21:26 petere Exp $ |
| 30 | +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.203 2003/09/2716:27:57 momjian Exp $ |
31 | 31 | #
|
32 | 32 | #-------------------------------------------------------------------------
|
33 | 33 |
|
@@ -1091,8 +1091,9 @@ $ECHO_N "creating information schema... "$ECHO_C
|
1091 | 1091 | echo"COPY information_schema.sql_features (feature_id, feature_name, sub_feature_id, sub_feature_name, is_supported, comments) FROM STDIN;"
|
1092 | 1092 | cat"$datadir"/sql_features.txt
|
1093 | 1093 | echo"\."
|
1094 |
| -) \ |
1095 |
| -|"$PGPATH"/postgres$PGSQL_OPT template1> /dev/null|| exit_nicely |
| 1094 | +)| |
| 1095 | +tr -d'\r'|# make newlines consistent for Win32 |
| 1096 | +"$PGPATH"/postgres$PGSQL_OPT template1> /dev/null|| exit_nicely |
1096 | 1097 | echo"ok"
|
1097 | 1098 |
|
1098 | 1099 | $ECHO_N"vacuuming database template1..."$ECHO_C
|
|