diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-13 19:23:35 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-13 19:23:35 -0700 |
commit | f0f65f5c9672390eb0047b0faa411e53898e9c71 (patch) | |
tree | a456561cbc063b51abaf29588ee466e8bc07e11b | |
parent | 44b3ea4dac1cc60eeda54ae7b53facbb025c6f68 (diff) | |
download | makers-f0f65f5c9672390eb0047b0faa411e53898e9c71.tar.gz makers-f0f65f5c9672390eb0047b0faa411e53898e9c71.zip |
i’m the CEO of being silly
-rw-r--r-- | src/makefile/input.rs | 2 |
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() |