summaryrefslogtreecommitdiff
path: root/support/texlab/build.rs
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-05-28 03:03:21 +0000
committerNorbert Preining <norbert@preining.info>2020-05-28 03:03:21 +0000
commit745892fbddea56040139108277e728b53fd8fc11 (patch)
tree15e55e299b38fccdabce8364f1fbf4f02ef37994 /support/texlab/build.rs
parent195ca7e0c377d83455867bdd8e409d4e1cf024ea (diff)
CTAN sync 202005280303
Diffstat (limited to 'support/texlab/build.rs')
-rw-r--r--support/texlab/build.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/texlab/build.rs b/support/texlab/build.rs
index 228a42992c..5283240997 100644
--- a/support/texlab/build.rs
+++ b/support/texlab/build.rs
@@ -1,6 +1,6 @@
fn main() {
- lalrpop::Configuration::new()
- .generate_in_source_tree()
- .process()
- .unwrap();
+ println!("cargo:rerun-if-changed=src/citeproc/name/parser.lalrpop");
+
+ #[cfg(feature = "citation")]
+ lalrpop::process_root().unwrap();
}