Submitter | Yuya Nishihara |
---|---|
Date | Feb. 9, 2016, 3:41 p.m. |
Message ID | <625d742eb6cffc8994de.1455032500@mimosa> |
Download | mbox | patch |
Permalink | /patch/13066/ |
State | Accepted |
Delegated to: | Yuya Nishihara |
Headers | show |
Comments
These look good to go, thanks. On Tue, Feb 9, 2016 at 7:41 AM, Yuya Nishihara <yuya@tcha.org> wrote: > # HG changeset patch > # User Yuya Nishihara <yuya@tcha.org> > # Date 1451792732 -32400 > # Sun Jan 03 12:45:32 2016 +0900 > # Node ID 625d742eb6cffc8994dece39242d4036dd91a0e1 > # Parent e2f262137a676261b9f300a2efd690a5aff0a7cc > chg: use in-tree hg executable to start server for testing > > diff --git a/contrib/chg/Makefile b/contrib/chg/Makefile > --- a/contrib/chg/Makefile > +++ b/contrib/chg/Makefile > @@ -1,4 +1,4 @@ > -HG = hg > +HG = $(CURDIR)/../../hg > > TARGET = chg > SRCS = chg.c hgclient.c util.c > _______________________________________________ > Mercurial-devel mailing list > Mercurial-devel@mercurial-scm.org > https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel >
Bryan O'Sullivan <bos@serpentine.com> writes:
> These look good to go, thanks.
Queue, queue, queue!
On Tue, 09 Feb 2016 10:51:45 -0800, Sean Farley wrote: > > Bryan O'Sullivan <bos@serpentine.com> writes: > > > These look good to go, thanks. > > Queue, queue, queue! Thanks, queued them by myself.
Patch
diff --git a/contrib/chg/Makefile b/contrib/chg/Makefile --- a/contrib/chg/Makefile +++ b/contrib/chg/Makefile @@ -1,4 +1,4 @@ -HG = hg +HG = $(CURDIR)/../../hg TARGET = chg SRCS = chg.c hgclient.c util.c