aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/makefile/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/input.rs b/src/makefile/input.rs
index 865b68b..dd772cb 100644
--- a/src/makefile/input.rs
+++ b/src/makefile/input.rs
@@ -59,7 +59,7 @@ impl LineType {
}
let colon_idx = line_tokens.find(":");
#[cfg(not(feature = "full"))]
- let equals_idx = line_tokens.find('=');
+ let equals_idx = line_tokens.find("=");
#[cfg(feature = "full")]
let equals_idx = ["=", ":=", "::=", "?=", "+="]
.iter()