summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Blin <olivier.blin@softathome.com>2012-11-14 19:08:10 +0100
committerColin Walters <walters@verbum.org>2012-11-21 17:56:12 -0500
commit5900d60d0640af59961e87f5315eb1d2f11fad9c (patch)
treecbbe8652816817a4e0b3b3d86724ebe49e9bddb4
parent6e2046207a2fe1c013bbf348b87d54a1375dea7a (diff)
downloadglib-5900d60d0640af59961e87f5315eb1d2f11fad9c.tar.gz
configure: add missing square bracket in AS_IF for memmove
This has been broken in commit 54e31ab4f172bbb28434eafc34c9345a93c9ccf5 It seems to be the only hunk that was incorrectly converted. https://bugzilla.gnome.org/show_bug.cgi?id=688377
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0fbd17cde..859dd2a7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1214,7 +1214,7 @@ AC_FUNC_SNPRINTF_C99
# Check if bcopy can be used for overlapping copies, if memmove isn't found.
# The check is borrowed from the PERL Configure script.
-AS_IF([test "$ac_cv_func_memmove" != "yes"],
+AS_IF([test "$ac_cv_func_memmove" != "yes"], [
AC_CACHE_CHECK(whether bcopy can handle overlapping copies,
glib_cv_working_bcopy,[AC_TRY_RUN([
int main() {