diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-23 22:04:38 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-23 22:04:38 +0200 |
commit | d08c9fde0a20073cafd86e14983702eb84bd0626 (patch) | |
tree | ae114bce148312b62055ba6bbb6aa18ae8f1a951 | |
parent | 8342d9b882bd93c1c5934280cf319feb822e66c1 (diff) |
Correct misquoted variable during driver generation
-rw-r--r-- | m4/pgsql.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/pgsql.m4 b/m4/pgsql.m4 index f8680f6..4941e5e 100644 --- a/m4/pgsql.m4 +++ b/m4/pgsql.m4 @@ -173,7 +173,7 @@ AC_CONFIG_COMMANDS([pgsql.options], echo 'opt="$opt --port='"$pgsql_port"'"' >>db-driver fi - echo 'opt=$opt --quiet' >>db-driver + echo 'opt="$opt --quiet"' >>db-driver echo 'export PGOPTIONS=--client-min-messages=warning' >>db-driver echo 'if test x$[]1 != x; then' >>db-driver |