Skip to content

Commit

Permalink
Remove weird error message when CROSSTOOL is missing.
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 213638996
  • Loading branch information
hlopko authored and Copybara-Service committed Sep 19, 2018
1 parent dbc707b commit 424a3d2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,7 @@ private static CrosstoolFile findCrosstoolConfiguration(

if (crosstoolProto == null) {
throw new InvalidConfigurationException("The crosstool_top you specified was resolved to '" +
crosstoolTop + "', which does not contain a CROSSTOOL file. " +
"You can use a crosstool from the depot by specifying its label.");
crosstoolTop + "', which does not contain a CROSSTOOL file.");
} else {
// Do this before we read the data, so if it changes, we get a different MD5 the next time.
// Alternatively, we could calculate the MD5 of the contents, which we also read, but this
Expand Down

0 comments on commit 424a3d2

Please sign in to comment.