# HG changeset patch # User Yuya Nishihara # Date 2017-10-12 13:21:14 # Node ID 01c57eeb35cbcd6b1d159404e02dd2ae06030297 # Parent 4182d2065e7ab55e8cd035855c4f99da442dbfd0 chg: remove outdated rule to start test server This rule is no longer useful because chg daemon may be killed and respawned per config/environment hash. We can't reliably run a daemon in foreground. diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -181,7 +181,6 @@ osx: make -C contrib/chg \ HGPATH=/usr/local/bin/hg \ PYTHON=/usr/bin/python2.7 \ - HG=/usr/local/bin/hg \ HGEXTDIR=/Library/Python/2.7/site-packages/hgext \ DESTDIR=../../build/mercurial \ PREFIX=/usr/local \ diff --git a/contrib/chg/Makefile b/contrib/chg/Makefile --- a/contrib/chg/Makefile +++ b/contrib/chg/Makefile @@ -1,5 +1,3 @@ -HG = $(CURDIR)/../../hg - TARGET = chg SRCS = chg.c hgclient.c procutil.c util.c OBJS = $(SRCS:.c=.o) @@ -15,9 +13,6 @@ DESTDIR = PREFIX = /usr/local MANDIR = $(PREFIX)/share/man/man1 -CHGSOCKDIR = /tmp/chg$(shell id -u) -CHGSOCKNAME = $(CHGSOCKDIR)/server - .PHONY: all all: $(TARGET) @@ -36,13 +31,6 @@ install: $(TARGET) install -d "$(DESTDIR)$(MANDIR)" install -m 644 chg.1 "$(DESTDIR)$(MANDIR)" -.PHONY: serve -serve: - [ -d "$(CHGSOCKDIR)" ] || ( umask 077; mkdir "$(CHGSOCKDIR)" ) - "$(HG)" serve --cwd / --cmdserver chgunix \ - --address $(CHGSOCKNAME) \ - --config cmdserver.log=/dev/stderr - .PHONY: clean clean: $(RM) $(OBJS)