aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2014-06-05 11:01:21 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2014-06-05 11:01:21 -0500
commitd57dd89e98eb0d1235a5aae82afe8aea6a4a3d6e (patch)
treead35cd4a2cae7ff32ffc124b2d8f813be2fe0b29 /configure.ac
parent76bb92dcb489d490d06993c4023f312aa969ccc2 (diff)
downloadmediagoblin-d57dd89e98eb0d1235a5aae82afe8aea6a4a3d6e.tar.lz
mediagoblin-d57dd89e98eb0d1235a5aae82afe8aea6a4a3d6e.tar.xz
mediagoblin-d57dd89e98eb0d1235a5aae82afe8aea6a4a3d6e.zip
psql, not postgres, in configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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])])