Skip to content

Commit

Permalink
Auto merge of #37924 - brson:config-bug, r=alexcrichton
Browse files Browse the repository at this point in the history
configure: Fix string equality
  • Loading branch information
bors authored Nov 23, 2016
2 parents ccdc26f + 2951488 commit 9fba8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
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 9fba8df

Please sign in to comment.