On Wed, Aug 14, 2013 at 4:27 AM, <[email protected]> wrote: > Updated Branches: > refs/heads/master c3a14aafa -> 00197df71 > > > TS-2131: ${localstatedir} chowned to ATS' user > > Calling "make install" sets ${localstatedir} owner and group to "ats" > user. Needlessly so. This patch fixes it. > > > Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo > Commit: > http://git-wip-us.apache.org/repos/asf/trafficserver/commit/26a3323b > Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/26a3323b > Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/26a3323b > > Branch: refs/heads/master > Commit: 26a3323b0741be700c1820d2fdb506c38156a2d0 > Parents: c3a14aa > Author: Igor Galić <[email protected]> > Authored: Wed Aug 14 11:47:27 2013 +0200 >
We should be using the --author option to give proper credit in git, no? > Committer: Igor Galić <[email protected]> > Committed: Wed Aug 14 12:03:29 2013 +0200 > > ---------------------------------------------------------------------- > proxy/Makefile.am | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > ---------------------------------------------------------------------- > > > > http://git-wip-us.apache.org/repos/asf/trafficserver/blob/26a3323b/proxy/Makefile.am > ---------------------------------------------------------------------- > diff --git a/proxy/Makefile.am b/proxy/Makefile.am > index 48f1dd6..852f8cb 100644 > --- a/proxy/Makefile.am > +++ b/proxy/Makefile.am > @@ -296,7 +296,8 @@ install-data-local: > $(DESTDIR)$(pkgsysconfdir) > $(DESTDIR)$(pkgsysconfdir)/internal $(DESTDIR)$(pkgdatadir) \ > $(DESTDIR)$(pkgcachedir); \ > else \ > - $(INSTALL) -d -o $(pkgsysuser) -g $(pkgsysgroup) > $(DESTDIR)$(pkglocalstatedir) $(DESTDIR)$(pkglogdir) \ > + $(INSTALL) -d $(DESTDIR)$(pkglocalstatedir); \ > + $(INSTALL) -d -o $(pkgsysuser) -g $(pkgsysgroup) > $(DESTDIR)$(pkglogdir) \ > $(DESTDIR)$(pkgruntimedir) > $(DESTDIR)$(pkgsysconfdir) \ > $(DESTDIR)$(pkgsysconfdir)/internal > $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(pkgcachedir); \ > fi > >
