From e0db38988af0f606a6aea1999d89b3abf62dae24 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Tue, 20 Apr 2021 19:30:49 -0600 Subject: skip more things on posix that aren't needed there --- src/makefile/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/makefile/mod.rs') diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index 277fbd3..74f1f4b 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -31,10 +31,14 @@ mod token; #[derive(Debug, Clone, Eq, PartialEq)] pub enum ItemSource { - File { name: String, line: usize }, + File { + name: String, + line: usize, + }, CommandLineOrMakeflags, Environment, Builtin, + #[cfg(feature = "full")] FunctionCall, } -- cgit v1.2.3