Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix get-libuv target #13273

Merged
merged 1 commit into from
Sep 23, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix get-libuv and get-osxunwind targets
  • Loading branch information
vtjnash authored and ihnorton committed Sep 22, 2015
commit ec8b8891bd9d32eca01b8d89620177ec492c42b0
6 changes: 4 additions & 2 deletions deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,8 @@ $5/$1/$3: $$(SRCDIR)/$1.version | $5/$1/.git/HEAD
@[ '$$($2_SHA1)' = "$$$$(cd $5/$1 && git show -s --format='%H' HEAD)" ] || echo $$(WARNCOLOR)'==> warning: SHA1 hash did not match $1.version file'$$(ENDCOLOR)
touch -c $$@
$5/$1/$4: $5/$1/.git/HEAD
$$($2_SRC_FILE): | $$($2_SRC_FILE)/HEAD
touch -c $$@

else # NO_GIT

Expand Down Expand Up @@ -1764,8 +1766,8 @@ distclean-osxunwind:
$(BUILDDIR)/libosxunwind-$(OSXUNWIND_VER)


get-osxunwind: libosxunwind-$(OSXUNWIND_VER)/Makefile
configure-osxunwind: get-osxunwind
get-osxunwind: $(SRCDIR)/srccache/libosxunwind-$(OSXUNWIND_VER).tar.gz
configure-osxunwind: $(BUILDDIR)/libosxunwind-$(OSXUNWIND_VER)/Makefile
compile-osxunwind: $(OSXUNWIND_OBJ_SOURCE)
check-osxunwind: compile-osxunwind
install-osxunwind: $(OSXUNWIND_OBJ_TARGET)
Expand Down