From: Quanah Gibson-Mount Date: Mon, 26 Jul 2021 20:05:24 +0000 (+0000) Subject: ITS#9591 - Fix missing grep statement X-Git-Tag: OPENLDAP_REL_ENG_2_6_0~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23f90be693d78600b249afcc4436440dd5ad3d4a;p=thirdparty%2Fopenldap.git ITS#9591 - Fix missing grep statement --- diff --git a/configure.ac b/configure.ac index 000982843a..4e2df1e0e1 100644 --- a/configure.ac +++ b/configure.ac @@ -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])