diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-14 19:25:35 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-14 19:25:53 -0600 |
commit | eb61a461411d54b08562ce04878ace57836f2a61 (patch) | |
tree | 7016f2cf166c51e2e6056ce1b96d1add1c5a4eaf /src/makefile/input.rs | |
parent | 7ac635054c43f28bf73233925ae13120b9ad86b8 (diff) | |
download | makers-eb61a461411d54b08562ce04878ace57836f2a61.tar.gz makers-eb61a461411d54b08562ce04878ace57836f2a61.zip |
always give a target with commands the first prereqs
Diffstat (limited to 'src/makefile/input.rs')
-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 03e7f18..5dda538 100644 --- a/src/makefile/input.rs +++ b/src/makefile/input.rs @@ -1163,8 +1163,8 @@ cursed: #[test] fn dependency_prepending_appending() -> R { let file = " -test: a test: b +test: a \techo hi test: c "; |