aboutsummaryrefslogtreecommitdiff
path: root/codegen/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/src/main.rs')
-rw-r--r--codegen/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/codegen/src/main.rs b/codegen/src/main.rs
index 5f8d153..0d21577 100644
--- a/codegen/src/main.rs
+++ b/codegen/src/main.rs
@@ -17,7 +17,7 @@ fn main() {
// Expand UTF8 parser state table
let mut registry = syntex::Registry::new();
ext::utf8::register(&mut registry);
- let src = &Path::new("../src/utf8/table.rs.in");
- let dst = &Path::new("../src/utf8/table.rs");
+ let src = &Path::new("../utf8parse/src/table.rs.in");
+ let dst = &Path::new("../utf8parse/src/table.rs");
registry.expand("utf8_state_table", src, dst).expect("expand utf8_stable_table ok");
}