diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-01 22:17:06 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-01 22:17:06 -0600 |
commit | fa750e3d195c249cc48a7416b487715c2031428d (patch) | |
tree | 669b54ca91bce3d3088737c564faf4520b482e3a /src/makefile/mod.rs | |
parent | dfe0b3fa77d7a448b4fd3286867bf1b9c4adfc74 (diff) | |
download | makers-fa750e3d195c249cc48a7416b487715c2031428d.tar.gz makers-fa750e3d195c249cc48a7416b487715c2031428d.zip |
and here i thought alt() would do backtracking on its own
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r-- | src/makefile/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index c118eb9..5be18e0 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -714,8 +714,7 @@ mod test { #[test] fn basic_conditionals() -> R { let file = " -ifneq (,$(foo bar, $(baz))) -else ifeq (1,1) +ifeq (1,1) worked = yes else ifeq (2,2) worked = no |