From 8f9b44d5e95f4088545dd2e9d43f64dfabd15da0 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 3 Jan 2018 18:24:16 -0500 Subject: [PATCH] fixed a syntax error --- citadel/configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/citadel/configure.ac b/citadel/configure.ac index 6e7280515..25e6e7400 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -2,9 +2,11 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) AC_INIT([Citadel],m4_esyscmd_s([grep REV_LEVEL citadel.h | sed 's/[^0-9]*//g']),[http://uncensored.citadel.org]) -AC_REVISION(m4_esyscmd_s([git log --pretty=%h | head -1]) + +AC_REVISION(m4_esyscmd_s([git log --pretty=%h | head -1])) + AC_CONFIG_SRCDIR([citserver.c]) -AC_CONFIG_HEADER(sysdep.h) +AC_CONFIG_HEADER([sysdep.h]) AC_CONFIG_MACRO_DIR([m4]) AC_PREFIX_DEFAULT(/usr/local/citadel) if test "$prefix" = NONE; then -- 2.30.2