Skip to content

Commit

Permalink
configure*: Trim trailing spaces on var assignments
Browse files Browse the repository at this point in the history
Command used to find them:

    grep ' "$' configure.ac
  • Loading branch information
kmk3 committed Nov 24, 2021
1 parent 3c6d523 commit b20a1f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -3535,7 +3535,7 @@ fi
if test "x$enable_selinux" = "xyes"; then :
HAVE_SELINUX="-DHAVE_SELINUX"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lselinux "
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lselinux"
fi
Expand Down Expand Up @@ -3801,8 +3801,8 @@ fi
if test "x$enable_gcov" = "xyes"; then :
HAVE_GCOV="--coverage -DHAVE_GCOV "
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgcov --coverage "
HAVE_GCOV="--coverage -DHAVE_GCOV"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgcov --coverage"
fi
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ AC_ARG_ENABLE([selinux],
AS_HELP_STRING([--enable-selinux], [SELinux labeling support]))
AS_IF([test "x$enable_selinux" = "xyes"], [
HAVE_SELINUX="-DHAVE_SELINUX"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lselinux "
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lselinux"
AC_SUBST(HAVE_SELINUX)
])

Expand Down Expand Up @@ -217,8 +217,8 @@ HAVE_GCOV=""
AC_ARG_ENABLE([gcov],
AS_HELP_STRING([--enable-gcov], [Gcov instrumentation]))
AS_IF([test "x$enable_gcov" = "xyes"], [
HAVE_GCOV="--coverage -DHAVE_GCOV "
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgcov --coverage "
HAVE_GCOV="--coverage -DHAVE_GCOV"
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgcov --coverage"
AC_SUBST(HAVE_GCOV)
])

Expand Down

0 comments on commit b20a1f3

Please sign in to comment.