Skip to content

Commit

Permalink
Fix typo in configure.in when testing for use_pcre
Browse files Browse the repository at this point in the history
  • Loading branch information
rfrancoise committed Jan 1, 2018
1 parent 7855256 commit b8b1e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ AC_ARG_ENABLE(pcre,
[ use_pcre="$enableval" ],
[ use_pcre="no" ])

if test use_pcre = yes; then
if test $use_pcre = yes; then
USE_PCRE="1"
EXTRA_LIBS="$EXTRA_LIBS -lpcre"
else
Expand Down

0 comments on commit b8b1e97

Please sign in to comment.