aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/mod.rs
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-06 18:29:50 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-06 18:29:50 -0600
commit6dbb6548990841e7aeb991b76a58e14d237e79d0 (patch)
tree5088e96003390ca954a3a7de3ef559d415b0ace0 /src/makefile/mod.rs
parentcffe08ca6db316f48eafb49b914ecd192aa8c45f (diff)
downloadmakers-6dbb6548990841e7aeb991b76a58e14d237e79d0.tar.gz
makers-6dbb6548990841e7aeb991b76a58e14d237e79d0.zip
fix exports oops
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r--src/makefile/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs
index f17ba64..cdf9d0b 100644
--- a/src/makefile/mod.rs
+++ b/src/makefile/mod.rs
@@ -110,7 +110,7 @@ impl<'a> Makefile<'a> {
pub fn extend(&mut self, new: FinishedMakefileReader) -> Result<()> {
self.inference_rules.extend(new.inference_rules);
- self.macros.extend(new.macros);
+ self.macros.extend(new.macros, new.macro_exports);
self.targets.borrow_mut().extend(
new.targets
.into_iter()