summaryrefslogtreecommitdiff
path: root/m4/free.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-05-21 06:40:31 +0000
committerJim Meyering <jim@meyering.net>2004-05-21 06:40:31 +0000
commit3b7026427d545d307a6046c2a33615ebe734ed0c (patch)
tree5beb75d7ee07ba44cba94175c671a2a3e8ba477e /m4/free.m4
parentaa1b76461d85c13df0e496ac6ff41fa5779b1c9a (diff)
downloadcoreutils-3b7026427d545d307a6046c2a33615ebe734ed0c.tar.xz
Update from gnulib (fix reversed test).
Diffstat (limited to 'm4/free.m4')
-rw-r--r--m4/free.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/free.m4 b/m4/free.m4
index 537fb893e..5e7546530 100644
--- a/m4/free.m4
+++ b/m4/free.m4
@@ -1,6 +1,6 @@
# Check whether free (NULL) is supposed to work.
-# Copyright (C) 2003 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
# This file is free software, distributed under the terms of the GNU
# General Public License. As a special exception to the GNU General
@@ -35,7 +35,7 @@ AC_DEFUN([gl_FUNC_FREE],
[gl_cv_func_free=yes],
[gl_cv_func_free=no])])
- if test $gl_cv_func_free = yes; then
+ if test $gl_cv_func_free = no; then
AC_LIBOBJ(free)
AC_DEFINE(free, rpl_free,
[Define to rpl_free if the replacement function should be used.])