commit 51be3973efb1fbdf2614fb70e00ec3e63ad3656d Author: David Fifield david@bamsoftware.com Date: Sat Oct 26 18:17:32 2013 -0700
Don't rebuild man pages with "make dist".
This often caused a problem when making bundles, when unpredictable timestamps after cloning would sometimes cause the man pages to appear to be out of date. Then the whole build would stop, failing to find the necessary a2x binary. kpdyer reported this problem in #9940. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Makefile b/Makefile index 86176d5..f8950aa 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ install:
DISTNAME = flashproxy-client-$(VERSION) DISTDIR = dist/$(DISTNAME) -dist: $(CLIENT_MAN) +dist: rm -rf dist mkdir -p $(DISTDIR) mkdir $(DISTDIR)/doc @@ -50,7 +50,6 @@ $(PY2EXE_TMPDIR)/dist: $(CLIENT_BIN)
dist-exe: DISTNAME := $(DISTNAME)-win32 dist-exe: CLIENT_BIN := $(PY2EXE_TMPDIR)/dist/* -dist-exe: CLIENT_MAN := $(addsuffix .txt,$(CLIENT_MAN)) # Delegate to the "dist" target using the substitutions above. dist-exe: $(PY2EXE_TMPDIR)/dist setup.py dist