]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#9591 - Fix missing grep statement
authorQuanah Gibson-Mount <quanah@openldap.org>
Mon, 26 Jul 2021 20:05:24 +0000 (20:05 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Mon, 26 Jul 2021 20:05:24 +0000 (20:05 +0000)
configure.ac

index 000982843a93bce89b9e15dd72b0e546402acec7..4e2df1e0e15563cc807544913678840beda2faba 100644 (file)
@@ -3133,7 +3133,7 @@ OL_VERSIONED_SYMBOLS=""
 if test $ol_enable_versioning != no; then
        LDVS=`$LD --help < /dev/null 2>/dev/null | grep gnu-version-script`
        if test -z "$LDVS"; then
-               LDVS=`$LD --help < /dev/null 2>/dev/null | version-script`
+               LDVS=`$LD --help < /dev/null 2>/dev/null | grep version-script`
                if test -z "$LDVS"; then
                        if test $ol_enable_versioning = "yes" ; then
                                AC_MSG_ERROR([Library symbol versioning requested but not supported])