From: Christopher Allan Webber Date: Thu, 5 Jun 2014 16:01:21 +0000 (-0500) Subject: psql, not postgres, in configure.ac X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d57dd89e98eb0d1235a5aae82afe8aea6a4a3d6e;p=mediagoblin.git psql, not postgres, in configure.ac --- diff --git a/configure.ac b/configure.ac index e56a55a5..b3933e88 100644 --- a/configure.ac +++ b/configure.ac @@ -147,7 +147,7 @@ AC_PROG_INSTALL # Check for a supported database program AC_PATH_PROG([SQLITE], [sqlite3]) -AC_PATH_PROG([POSTGRES], [postgres]) +AC_PATH_PROG([POSTGRES], [psql]) AS_IF([test "x$SQLITE" = x -a "x$POSTGRES" = "x"], [AC_MSG_ERROR([SQLite or PostgreSQL is required])])