diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-30 19:27:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-30 19:27:00 -0400 |
commit | 6744bb8d750b9ab11d2ec9448334732b98feb58a (patch) | |
tree | aff1fbe73c0aa804cbf041ed6ec968eaf310d076 /core | |
parent | c9614d86c190b98bd8f0df9e17272387c3bad1d5 (diff) |
Call ninja directly from build.rs (#2020)
Diffstat (limited to 'core')
-rw-r--r-- | core/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/build.rs b/core/build.rs index 0cb775e5c..8b827d9e7 100644 --- a/core/build.rs +++ b/core/build.rs @@ -1,7 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. // Run "cargo build -vv" if you want to see gn output. mod gn { - include!("../gn.rs"); + include!("../tools/gn.rs"); } fn main() { |