masqmail
diff Makefile.in @ 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 | 5781ba87df95 |
children | f37384470855 |
line diff
1.1 --- a/Makefile.in Tue May 29 21:33:49 2012 +0200 1.2 +++ b/Makefile.in Tue May 29 21:35:17 2012 +0200 1.3 @@ -200,6 +200,7 @@ 1.4 with_confdir = @with_confdir@ 1.5 with_group = @with_group@ 1.6 with_logdir = @with_logdir@ 1.7 +with_piddir = @with_piddir@ 1.8 with_spooldir = @with_spooldir@ 1.9 with_user = @with_user@ 1.10 EXTRA_DIST = examples docs man tpl devel 1.11 @@ -689,9 +690,9 @@ 1.12 uninstall uninstall-am uninstall-local 1.13 1.14 1.15 -install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir run_dir doc_dir rmail 1.16 +install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir pid_dir doc_dir rmail 1.17 1.18 -uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-run_dir rm-spool_dir rm-log_dir 1.19 +uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-pid_dir rm-spool_dir rm-log_dir 1.20 1.21 conf_dir: 1.22 install -d $(DESTDIR)@with_confdir@ 1.23 @@ -720,11 +721,11 @@ 1.24 ) 1.25 rmdir $(DESTDIR)@docdir@ 1.26 1.27 -run_dir: 1.28 - install -d -o @with_user@ -g @with_group@ $(DESTDIR)/var/run/masqmail 1.29 +pid_dir: 1.30 + install -d $(DESTDIR)@with_piddir@ 1.31 1.32 -rm-run_dir: 1.33 - rm -rf $(DESTDIR)/var/run/masqmail 1.34 +rm-pid_dir: 1.35 + rm -rf $(DESTDIR)@with_piddir@ 1.36 1.37 log_dir: 1.38 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@ 1.39 @@ -753,7 +754,7 @@ 1.40 rm-rmail: 1.41 rm -f $(DESTDIR)@prefix@/sbin/rmail 1.42 1.43 -uid_bit: $(DESTDIR)@prefix@/sbin/masqmail 1.44 +uid_bit: 1.45 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail 1.46 1.47 # Tell versions [3.59,3.63) of GNU make to not export all variables.