From cb8fcf613de5e944c6393a9e9d5cdde911705577 Mon Sep 17 00:00:00 2001 From: Nelson Elhage Date: Sun, 29 Jun 2014 18:22:44 -0700 Subject: [PATCH] Fix a Makefile typo. The broken .PHONY declaration is breaking Travis: 'make deps' is now a no-op, because of the new 'deps' directory. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0e4a546264..8d8e2f078a 100644 --- a/Makefile +++ b/Makefile @@ -30,4 +30,4 @@ web: web-push: ./scripts/website_push.sh -.PNONY: all cov deps integ test web web-push +.PHONY: all cov deps integ test web web-push