Skip to content

Commit

Permalink
configure.ac: fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
ropery committed Aug 28, 2014
1 parent cd575e9 commit 9dca2b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ AC_INIT([xrectsel], [0.3])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AC_PROG_CC
AC_SEARCH_LIBS([XOpenDisplay], [X11], , AC_MSG_ERROR([libx11 is required]))
AC_SEARCH_LIBS([XOpenDisplay], [X11], , [AC_MSG_ERROR([libx11 is required])])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

0 comments on commit 9dca2b0

Please sign in to comment.