From: Stefano Lattarini Date: Thu, 19 Jul 2012 07:49:59 +0000 (+0200) Subject: autoconf: remove few redundant semicolons X-Git-Tag: v1.7.12-rc0~4^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8e134a236692a64b44869717abe4080d6243a39;p=thirdparty%2Fgit.git autoconf: remove few redundant semicolons They are merely useless now, but would get in the way of future changes. No semantic change is intended. Signed-off-by: Stefano Lattarini Signed-off-by: Junio C Hamano --- diff --git a/configure.ac b/configure.ac index 200776f208..b453ba5eb9 100644 --- a/configure.ac +++ b/configure.ac @@ -203,7 +203,7 @@ AC_ARG_ENABLE([jsmin], [ JSMIN=$enableval; AC_MSG_NOTICE([Setting JSMIN to '$JSMIN' to enable JavaScript minifying]) - GIT_CONF_SUBST([JSMIN], [$enableval]); + GIT_CONF_SUBST([JSMIN], [$enableval]) ]) # Define option to enable CSS minification @@ -213,7 +213,7 @@ AC_ARG_ENABLE([cssmin], [ CSSMIN=$enableval; AC_MSG_NOTICE([Setting CSSMIN to '$CSSMIN' to enable CSS minifying]) - GIT_CONF_SUBST([CSSMIN], [$enableval]); + GIT_CONF_SUBST([CSSMIN], [$enableval]) ]) ## Site configuration (override autodetection)