summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@openbsd.org>2012-08-23 14:00:16 +0200
committerStef Walter <stefw@gnome.org>2012-08-23 14:00:16 +0200
commit56860b7f72c444eed5923e11d735b85b630a171d (patch)
tree240ff51c8b7176f0a85d6152d2c8d92e6aaeca5f
parent359bb15bc83484e4de69fa8dbc9113d97817d01e (diff)
downloadp11-kit-56860b7f72c444eed5923e11d735b85b630a171d.tar.gz
configure.ac: Fix bogus comma, and fix up spacing
* Fixes a mistake in the previous commit https://bugs.freedesktop.org/show_bug.cgi?id=53706
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 862e2c0..5b65a93 100644
--- a/configure.ac
+++ b/configure.ac
@@ -75,11 +75,11 @@ if test "$os_unix" = "yes"; then
AC_CHECK_DECLS([program_invocation_short_name])
AC_MSG_CHECKING([whether program_invocation_short_name is available])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <argp.h>]],
- [[program_invocation_short_name = "test";]])],
- [AC_DEFINE([HAVE_PROGRAM_INVOCATION_SHORT_NAME], [1],
- [Whether program_invocation_short_name available]),
- AC_MSG_RESULT([yes])],
- [AC_MSG_RESULT([no])])
+ [[program_invocation_short_name = "test";]])],
+ [AC_DEFINE([HAVE_PROGRAM_INVOCATION_SHORT_NAME], [1],
+ [Whether program_invocation_short_name available])
+ AC_MSG_RESULT([yes])],
+ [AC_MSG_RESULT([no])])
AC_CHECK_DECLS([__progname])
AC_LINK_IFELSE([AC_LANG_SOURCE([extern char *__progname; void main() { }])],
[AC_DEFINE(HAVE___PROGNAME, [1], [Whether __progname available])])