summaryrefslogtreecommitdiff
path: root/ninja.lua
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2017-10-22 18:30:19 -0700
committerMichael Forney <mforney@mforney.org>2017-10-23 21:43:33 -0700
commite5cfa84477427cc8233ff18ab235c4eb88c1d7d2 (patch)
tree459b348d4572b8c178ab157c2b257dd22f25b4d2 /ninja.lua
parent6026883449f412761b4cf066585c2ec1d1f28f6f (diff)
Move $outdir/fetch.stamp -> $dir/fetch
Diffstat (limited to 'ninja.lua')
-rw-r--r--ninja.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/ninja.lua b/ninja.lua
index e2707178..7be36a0b 100644
--- a/ninja.lua
+++ b/ninja.lua
@@ -357,9 +357,9 @@ function waylandproto(proto, client, server, code)
end
function fetch(method, args)
- build('fetch'..method, '$outdir/fetch.stamp', {'|', '$dir/rev'}, {args=args})
+ build('fetch'..method, '$dir/fetch', {'|', '$dir/rev'}, {args=args})
if next(pkg.inputs.fetch) then
- build('phony', table.keys(pkg.inputs.fetch), '$outdir/fetch.stamp')
+ build('phony', table.keys(pkg.inputs.fetch), '$dir/fetch')
end
end