]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
pthread.m4: Add missing 'test' to conditional
authorAndrew Deason <adeason@dson.org>
Fri, 21 Sep 2018 22:16:52 +0000 (17:16 -0500)
committerStephan Wiesand <stephan.wiesand@desy.de>
Mon, 10 Jun 2019 11:20:58 +0000 (07:20 -0400)
Commit c5def62d (autoconf: update pthread checks) accidentally omitted
a 'test' in one of the conditionals. This causes an ugly error message
during configure:

    checking for pthread_attr_init in -lpthread... yes
    ./configure[31043]: x-lpthread: not found [No such file or directory]

Replace the missing 'test'.

Reviewed-on: https://gerrit.openafs.org/13342
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
(cherry picked from commit 38a094137f067255c586dd5c85f3040d7a7c4486)

Change-Id: Iaa7014c6ae58bd492930dbe4f39180111bacb67e
Reviewed-on: https://gerrit.openafs.org/13595
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Mark Vitale <mvitale@sinenomine.net>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
src/cf/pthread.m4

index 0661c749c53a00140a00da9d3bc3da513623d5a3..94aadad9c28f54a3cafdc551f3f90a3de8e7e04a 100644 (file)
@@ -7,7 +7,7 @@ AS_IF([test "x$MKAFS_OSTYPE" = xDFBSD],
 AS_IF([test "x$PTHREAD_LIBS" = xerror],
   [AC_CHECK_LIB([pthread], [pthread_attr_init],
                 [PTHREAD_LIBS="-lpthread"])])
-AS_IF(["x$PTHREAD_LIBS" = xerror],
+AS_IF([test "x$PTHREAD_LIBS" = xerror],
   [AC_CHECK_LIB([pthreads], [pthread_attr_init],
                 [PTHREAD_LIBS="-lpthreads"])])
 AS_IF([test "x$PTHREAD_LIBS" = xerror],