From 961ff268749832f2b3bedd97438dd27325fe0a87 Mon Sep 17 00:00:00 2001 From: "Matt T. Proud" Date: Thu, 25 Apr 2013 12:16:51 +0200 Subject: [PATCH] Fix positional flags for ``cp`` on Darwin. Unfortunately ``cp`` on Darwin regards some flags as positional and requires them to be in a specific place. The new Protocol Buffer descriptor bundling fails on Mac OS. --- web/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Makefile b/web/Makefile index ba0e5a7d8..c643948a8 100644 --- a/web/Makefile +++ b/web/Makefile @@ -23,6 +23,6 @@ static/generated: mkdir -vp static/generated static/generated/protocol_buffer.descriptor: static/generated ../model/generated/descriptor.blob - cp ../model/generated/descriptor.blob -f $@ + cp -f ../model/generated/descriptor.blob $@ .PHONY: blob clean