diff --git a/src/cargo/core/profiles.rs b/src/cargo/core/profiles.rs index fc5fe31bccb..462e4af50d7 100644 --- a/src/cargo/core/profiles.rs +++ b/src/cargo/core/profiles.rs @@ -802,7 +802,7 @@ impl fmt::Display for Strip { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match *self { Strip::DebugInfo => "debuginfo", - Strip::None => "abort", + Strip::None => "none", Strip::Symbols => "symbols", } .fmt(f)