From: Bruno Haible Date: Sat, 21 May 2011 11:42:11 +0000 (+0200) Subject: link: Respect rules for use of AC_LIBOBJ. X-Git-Tag: v0.1~2502 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=b0df1ea0c8740b9bbed97b1282a2e6f862a0f5ee;p=gnulib.git link: Respect rules for use of AC_LIBOBJ. * m4/link.m4 (gl_FUNC_LINK): Move AC_LIBOBJ invocations from here... * modules/link (configure.ac): ... to here. --- diff --git a/ChangeLog b/ChangeLog index 263c496c5..209621160 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2011-05-21 Bruno Haible + link: Respect rules for use of AC_LIBOBJ. + * m4/link.m4 (gl_FUNC_LINK): Move AC_LIBOBJ invocations from here... + * modules/link (configure.ac): ... to here. + +2011-05-21 Bruno Haible + lchown: Move AC_LIBOBJ invocations to module description. * m4/lchown.m4 (gl_FUNC_EUIDACCESS): Call AC_CHECK_FUNCS instead of AC_REPLACE_FUNCS. Move AC_LIBOBJ invocations from here... diff --git a/m4/link.m4 b/m4/link.m4 index 479083cb8..2f1a439ed 100644 --- a/m4/link.m4 +++ b/m4/link.m4 @@ -1,4 +1,4 @@ -# link.m4 serial 5 +# link.m4 serial 6 dnl Copyright (C) 2009-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -10,7 +10,6 @@ AC_DEFUN([gl_FUNC_LINK], AC_CHECK_FUNCS_ONCE([link]) if test $ac_cv_func_link = no; then HAVE_LINK=0 - AC_LIBOBJ([link]) else AC_CACHE_CHECK([whether link handles trailing slash correctly], [gl_cv_func_link_works], @@ -37,7 +36,6 @@ AC_DEFUN([gl_FUNC_LINK], rm -f conftest.a conftest.b conftest.lnk]) if test "$gl_cv_func_link_works" != yes; then REPLACE_LINK=1 - AC_LIBOBJ([link]) fi fi ]) diff --git a/modules/link b/modules/link index 38cf5ec9f..5ea0ac2ff 100644 --- a/modules/link +++ b/modules/link @@ -13,6 +13,9 @@ sys_stat [test $HAVE_LINK = 0 || test $REPLACE_LINK = 1] configure.ac: gl_FUNC_LINK +if test $HAVE_LINK = 0 || test $REPLACE_LINK = 1; then + AC_LIBOBJ([link]) +fi gl_UNISTD_MODULE_INDICATOR([link]) Makefile.am: