Skip to content

Commit

Permalink
autoconf: remove few redundant semicolons
Browse files Browse the repository at this point in the history
They are merely useless now, but would get in the way of future changes.

No semantic change is intended.

Signed-off-by: Stefano Lattarini <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
slattarini authored and gitster committed Jul 19, 2012
1 parent 7f8cf48 commit c8e134a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit c8e134a

Please sign in to comment.