aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2024-11-13 19:23:35 -0700
committerMelody Horn <melody@boringcactus.com>2024-11-13 19:23:35 -0700
commitf0f65f5c9672390eb0047b0faa411e53898e9c71 (patch)
treea456561cbc063b51abaf29588ee466e8bc07e11b /src/makefile
parent44b3ea4dac1cc60eeda54ae7b53facbb025c6f68 (diff)
downloadmakers-f0f65f5c9672390eb0047b0faa411e53898e9c71.tar.gz
makers-f0f65f5c9672390eb0047b0faa411e53898e9c71.zip
i’m the CEO of being silly
Diffstat (limited to 'src/makefile')
-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()