Mercurial > masqmail
comparison 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 |
comparison
equal
deleted
inserted
replaced
418:4cbaf6d6793f | 419:d209b4846f2b |
---|---|
198 top_builddir = @top_builddir@ | 198 top_builddir = @top_builddir@ |
199 top_srcdir = @top_srcdir@ | 199 top_srcdir = @top_srcdir@ |
200 with_confdir = @with_confdir@ | 200 with_confdir = @with_confdir@ |
201 with_group = @with_group@ | 201 with_group = @with_group@ |
202 with_logdir = @with_logdir@ | 202 with_logdir = @with_logdir@ |
203 with_piddir = @with_piddir@ | |
203 with_spooldir = @with_spooldir@ | 204 with_spooldir = @with_spooldir@ |
204 with_user = @with_user@ | 205 with_user = @with_user@ |
205 EXTRA_DIST = examples docs man tpl devel | 206 EXTRA_DIST = examples docs man tpl devel |
206 SUBDIRS = src man | 207 SUBDIRS = src man |
207 all: config.h | 208 all: config.h |
687 maintainer-clean maintainer-clean-generic mostlyclean \ | 688 maintainer-clean maintainer-clean-generic mostlyclean \ |
688 mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ | 689 mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ |
689 uninstall uninstall-am uninstall-local | 690 uninstall uninstall-am uninstall-local |
690 | 691 |
691 | 692 |
692 install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir run_dir doc_dir rmail | 693 install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir pid_dir doc_dir rmail |
693 | 694 |
694 uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-run_dir rm-spool_dir rm-log_dir | 695 uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-pid_dir rm-spool_dir rm-log_dir |
695 | 696 |
696 conf_dir: | 697 conf_dir: |
697 install -d $(DESTDIR)@with_confdir@ | 698 install -d $(DESTDIR)@with_confdir@ |
698 | 699 |
699 rm-conf_dir: | 700 rm-conf_dir: |
718 rm -rf docs examples ; \ | 719 rm -rf docs examples ; \ |
719 rm -f ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS ; \ | 720 rm -f ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS ; \ |
720 ) | 721 ) |
721 rmdir $(DESTDIR)@docdir@ | 722 rmdir $(DESTDIR)@docdir@ |
722 | 723 |
723 run_dir: | 724 pid_dir: |
724 install -d -o @with_user@ -g @with_group@ $(DESTDIR)/var/run/masqmail | 725 install -d $(DESTDIR)@with_piddir@ |
725 | 726 |
726 rm-run_dir: | 727 rm-pid_dir: |
727 rm -rf $(DESTDIR)/var/run/masqmail | 728 rm -rf $(DESTDIR)@with_piddir@ |
728 | 729 |
729 log_dir: | 730 log_dir: |
730 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@ | 731 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@ |
731 | 732 |
732 rm-log_dir: | 733 rm-log_dir: |
751 chmod 755 $(DESTDIR)@prefix@/sbin/rmail | 752 chmod 755 $(DESTDIR)@prefix@/sbin/rmail |
752 | 753 |
753 rm-rmail: | 754 rm-rmail: |
754 rm -f $(DESTDIR)@prefix@/sbin/rmail | 755 rm -f $(DESTDIR)@prefix@/sbin/rmail |
755 | 756 |
756 uid_bit: $(DESTDIR)@prefix@/sbin/masqmail | 757 uid_bit: |
757 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail | 758 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail |
758 | 759 |
759 # Tell versions [3.59,3.63) of GNU make to not export all variables. | 760 # Tell versions [3.59,3.63) of GNU make to not export all variables. |
760 # Otherwise a system limit (for SysV at least) may be exceeded. | 761 # Otherwise a system limit (for SysV at least) may be exceeded. |
761 .NOEXPORT: | 762 .NOEXPORT: |