diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-23 22:05:37 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-23 22:05:37 +0200 |
commit | bd9f8b9a58b14a2a178632917bba0dbf5db0b51a (patch) | |
tree | 09292ccb43b9698f1df7a171566b5dc67774f3b4 /m4 | |
parent | b7e84b76f9f8a4c14f5310590c4b8da83b4c5f6c (diff) |
Correct misquoted variable while generating driver
Diffstat (limited to 'm4')
-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 |