]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Properly quote arguments for AC_LIBOBJ.
authorTiziano Müller <tiziano.mueller@stepping-stone.ch>
Wed, 8 Apr 2015 11:29:37 +0000 (13:29 +0200)
committerWayne Davison <wayned@samba.org>
Fri, 1 May 2015 21:26:21 +0000 (14:26 -0700)
configure.ac

index 58d0843421302ad93856451231264c5463766460..ebfd30abc15609799d4fce2993fe2768d9389b4d 100644 (file)
@@ -524,9 +524,9 @@ if test x"$rsync_cv_HAVE_GETADDR_DEFINES" = x"yes" -a x"$ac_cv_type_struct_addri
                        AC_DEFINE(HAVE_GETADDRINFO, 1,
                                [Define to 1 if you have the "getaddrinfo" function and required types.])],
                        [AC_MSG_RESULT([no])
-                       AC_LIBOBJ(getaddrinfo)])])
+                       AC_LIBOBJ([getaddrinfo])])])
 else
-       AC_LIBOBJ(getaddrinfo)
+       AC_LIBOBJ([getaddrinfo])
 fi
 
 AC_CHECK_MEMBER([struct sockaddr.sa_len],