diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-19 09:49:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-19 19:30:26 +0200 |
commit | c8e134a236692a64b44869717abe4080d6243a39 (patch) | |
tree | e69a63915699a63b46142f152a87d1eb8f64debb /configure.ac | |
parent | autoconf: remove some redundant shell indirections (diff) | |
download | git-c8e134a236692a64b44869717abe4080d6243a39.tar.xz git-c8e134a236692a64b44869717abe4080d6243a39.zip |
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 <stefano.lattarini@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
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) |