Skip to content

Commit

Permalink
configure: Fix string equality
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Nov 21, 2016
1 parent 80a95e3 commit 2951488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -856,7 +856,7 @@ probe_need CFG_CMAKE cmake
if [ -n "$CFG_ANTLR4" ]
then
CFG_ANTLR4_JAR="\"$(find /usr/ -name antlr-complete.jar 2>/dev/null | head -n 1)\""
if [ "x" -eq "x$CFG_ANTLR4_JAR" ]
if [ "x" = "x$CFG_ANTLR4_JAR" ]
then
CFG_ANTLR4_JAR="\"$(find ~ -name antlr-complete.jar 2>/dev/null | head -n 1)\""
fi
Expand Down

0 comments on commit 2951488

Please sign in to comment.