diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-03-27 14:29:07 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-03-27 14:29:07 -0700 |
| commit | 080d2104ff3b1637f919129bc40a99203a198a08 (patch) | |
| tree | 376fc81b52bc7304ad361312c244c44e499e2c3a | |
| parent | 0f4f786b6220968a7b29ad2e587f8d7ef70cebcb (diff) | |
| download | rust-080d2104ff3b1637f919129bc40a99203a198a08.tar.gz rust-080d2104ff3b1637f919129bc40a99203a198a08.zip | |
mk: Always touch libuv.a
libuv.a always looks out of date to the makefile, causing make to always descend into the libuv makefile, even when there's nothing to build.
| -rw-r--r-- | mk/rt.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mk/rt.mk b/mk/rt.mk index 01667352c67..77bb22b7bfc 100644 --- a/mk/rt.mk +++ b/mk/rt.mk @@ -215,6 +215,7 @@ $$(LIBUV_DIR_$(1))/Release/libuv.a: $$(LIBUV_DEPS) $$(LIBUV_MAKEFILE_$(1)) \ BUILDTYPE=Release \ NO_LOAD="$$(LIBUV_NO_LOAD)" \ V=$$(VERBOSE) + $$(Q)touch $$@ endif |
