Mercurial > masqmail
comparison Makefile.am @ 419:d209b4846f2b
The pid files goes to /var/run/masqmail.pid now. Added --with-piddir.
Now we can change the pid dir to /run on system that did this transition.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Tue, 29 May 2012 21:35:17 +0200 |
parents | d364fea755b4 |
children | f37384470855 |
comparison
equal
deleted
inserted
replaced
418:4cbaf6d6793f | 419:d209b4846f2b |
---|---|
1 EXTRA_DIST = examples docs man tpl devel | 1 EXTRA_DIST = examples docs man tpl devel |
2 | 2 |
3 SUBDIRS = src man | 3 SUBDIRS = src man |
4 | 4 |
5 install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir run_dir doc_dir rmail | 5 install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir pid_dir doc_dir rmail |
6 | 6 |
7 uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-run_dir rm-spool_dir rm-log_dir | 7 uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-pid_dir rm-spool_dir rm-log_dir |
8 | 8 |
9 | 9 |
10 conf_dir: | 10 conf_dir: |
11 install -d $(DESTDIR)@with_confdir@ | 11 install -d $(DESTDIR)@with_confdir@ |
12 | 12 |
35 rm -f ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS ; \ | 35 rm -f ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS ; \ |
36 ) | 36 ) |
37 rmdir $(DESTDIR)@docdir@ | 37 rmdir $(DESTDIR)@docdir@ |
38 | 38 |
39 | 39 |
40 run_dir: | 40 pid_dir: |
41 install -d -o @with_user@ -g @with_group@ $(DESTDIR)/var/run/masqmail | 41 install -d $(DESTDIR)@with_piddir@ |
42 | 42 |
43 rm-run_dir: | 43 rm-pid_dir: |
44 rm -rf $(DESTDIR)/var/run/masqmail | 44 rm -rf $(DESTDIR)@with_piddir@ |
45 | 45 |
46 | 46 |
47 log_dir: | 47 log_dir: |
48 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@ | 48 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@ |
49 | 49 |
71 | 71 |
72 rm-rmail: | 72 rm-rmail: |
73 rm -f $(DESTDIR)@prefix@/sbin/rmail | 73 rm -f $(DESTDIR)@prefix@/sbin/rmail |
74 | 74 |
75 | 75 |
76 uid_bit: $(DESTDIR)@prefix@/sbin/masqmail | 76 uid_bit: |
77 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail | 77 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail |