diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-03 18:19:56 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-03 18:19:56 -0600 |
commit | 13b90ab94dd884be95207e3004c65657db815ffa (patch) | |
tree | c867d4210d5840fdacec2e38155a0423f3abf16f | |
parent | f73d0b2256f2afc05995929c930b2eeab6800ecf (diff) | |
download | makers-13b90ab94dd884be95207e3004c65657db815ffa.tar.gz makers-13b90ab94dd884be95207e3004c65657db815ffa.zip |
enable pattern matching on POSIX since we're using that now for suffix rules
-rw-r--r-- | src/makefile/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index 225ff55..e004586 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -17,7 +17,6 @@ mod functions; mod inference_rules; mod input; mod r#macro; -#[cfg(feature = "full")] mod pattern; mod target; mod token; |