1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-24 08:04:58 +02:00

Duh. Fix last change.

This commit is contained in:
Jim Meyering
2003-12-19 22:30:14 +00:00
parent 6f438344f1
commit a086112e73

View File

@@ -17,8 +17,8 @@ AC_DEFUN([gl_CLOCK_TIME],
# library, inducing unnecessary run-time overhead.
fetish_saved_libs=$LIBS
AC_SEARCH_LIBS(clock_gettime, [rt posix4],
[LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime
test -z "$LIB_CLOCK_GETTIME" && LIB_CLOCK_GETTIME=])
[test "$ac_cv_search_clock_gettime" = "none required" ||
LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime])
AC_SUBST(LIB_CLOCK_GETTIME)
AC_CHECK_FUNCS(clock_gettime clock_settime)
LIBS=$fetish_saved_libs