aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiziano Müller <tiziano.mueller@stepping-stone.ch>2015-04-08 13:29:37 +0200
committerWayne Davison <wayned@samba.org>2015-05-01 14:26:21 -0700
commit8e3a6db842ef76f5fb262cbb92cad99479e6db36 (patch)
treea50d8e4a598deaf860d77303788ee07ac725ecb2
parent8354cad53e5c1dc8a09ec4cc68693e69d35d1357 (diff)
downloadandroid_external_rsync-8e3a6db842ef76f5fb262cbb92cad99479e6db36.tar.gz
android_external_rsync-8e3a6db842ef76f5fb262cbb92cad99479e6db36.tar.bz2
android_external_rsync-8e3a6db842ef76f5fb262cbb92cad99479e6db36.zip
Properly quote arguments for AC_LIBOBJ.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 58d08434..ebfd30ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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],