diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 16:59:51 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 16:59:51 +0000 |
commit | d86b26dc74df28560bc19fa9dae8ca5dffb85bd8 (patch) | |
tree | aa7a37bb1af4400690c8b6fa5460d6f79934926c /app/xconsole/Makefile.am | |
parent | 07f0773b3c007857efd87f09618e2283841815f0 (diff) |
OpenBSD modification: privilege separation.
Diffstat (limited to 'app/xconsole/Makefile.am')
-rw-r--r-- | app/xconsole/Makefile.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/xconsole/Makefile.am b/app/xconsole/Makefile.am index de2cd2d64..b6245d530 100644 --- a/app/xconsole/Makefile.am +++ b/app/xconsole/Makefile.am @@ -27,6 +27,11 @@ xconsole_LDADD = $(XCONSOLE_LIBS) xconsole_SOURCES = \ xconsole.c +if USE_PRIVSEP +xconsole_SOURCES += \ + privsep.c +endif + appman_PRE = \ xconsole.man @@ -80,3 +85,10 @@ SUFFIXES += .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): sed $(MAN_SUBSTS) < $< > $@ + +.PHONY: ChangeLog + +ChangeLog: + GIT_DIR=${srcdir}/.git git-log --name-only > ChangeLog + +dist-hook: ChangeLog |