diff options
author | Baruch Siach <baruch@tkos.co.il> | 2016-03-03 23:37:27 +0200 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2016-03-04 12:02:18 +0000 |
commit | 77e55b1ea315776130822df92f04ba2ca999ca01 (patch) | |
tree | 3e149ff171bcea35578cca3ae8221158c3d91800 /configure.ac | |
parent | 564fb25e821bdd143d23c4e22bc98254b0f8dd59 (diff) | |
download | zsh-77e55b1ea315776130822df92f04ba2ca999ca01.tar.gz zsh-77e55b1ea315776130822df92f04ba2ca999ca01.tar.xz zsh-77e55b1ea315776130822df92f04ba2ca999ca01.zip |
38084: Use previously located pcre-config for libs
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c3bd713c1..9947b1606 100644 --- a/configure.ac +++ b/configure.ac @@ -925,7 +925,7 @@ fi if test x$enable_pcre = xyes; then dnl pcre-config should probably be employed here dnl AC_SEARCH_LIBS(pcre_compile, pcre) - LIBS="`pcre-config --libs` $LIBS" + LIBS="`$ac_cv_prog_PCRECONF --libs` $LIBS" fi dnl --------------------- |