/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2016-06-03 17:27:03 UTC
  • Revision ID: teddy@recompile.se-20160603172703-mc6tjor6rhq4xy74
mandos: Bug fix: Do multiprocessing cleanup correctly on exit

* mandos (main): Save module "multiprocessing" and open file "wnull"
                 as scope variables accessible by function cleanup(),
                 since the module and global variable may not be
                 accessible when the cleanup() function is run as
                 scheduled by atexit().

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
OPTIMIZE=-Os -fno-strict-aliasing
41
41
LANGUAGE=-std=gnu11
42
42
htmldir=man
43
 
version=1.7.3
 
43
version=1.7.7
44
44
SED=sed
45
45
 
46
46
USER=$(firstword $(subst :, ,$(shell getent passwd _mandos || getent passwd nobody || echo 65534)))
75
75
##
76
76
 
77
77
SYSTEMD=$(DESTDIR)$(shell pkg-config systemd --variable=systemdsystemunitdir)
 
78
TMPFILES=$(DESTDIR)$(shell pkg-config systemd --variable=tmpfilesdir)
78
79
 
79
80
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
80
81
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
337
338
        elif install --directory --mode=u=rwx $(STATEDIR); then \
338
339
                chown -- $(USER):$(GROUP) $(STATEDIR) || :; \
339
340
        fi
 
341
        if [ "$(TMPFILES)" != "$(DESTDIR)" -a -d "$(TMPFILES)" ]; then \
 
342
                install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
 
343
                        $(TMPFILES)/mandos.conf; \
 
344
        fi
340
345
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
341
346
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
342
347
                mandos-ctl
378
383
                $(LIBDIR)/mandos/plugin-helpers
379
384
        if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
380
385
                install --mode=u=rwx \
381
 
                        --directory "$(CONFDIR)/plugins.d"; \
382
 
                install --directory "$(CONFDIR)/plugin-helpers"; \
 
386
                        --directory "$(CONFDIR)/plugins.d" \
 
387
                        "$(CONFDIR)/plugin-helpers"; \
383
388
        fi
384
389
        install --mode=u=rwx,go=rx --directory \
385
390
                "$(CONFDIR)/network-hooks.d"
405
410
        install --mode=u=rwxs,go=rx \
406
411
                --target-directory=$(LIBDIR)/mandos/plugins.d \
407
412
                plugins.d/plymouth
408
 
        install --mode=u=rwxs,go=rx \
 
413
        install --mode=u=rwx,go=rx \
409
414
                --target-directory=$(LIBDIR)/mandos/plugin-helpers \
410
415
                plugin-helpers/mandos-client-iprouteadddel
411
416
        install initramfs-tools-hook \
431
436
                > $(MANDIR)/man8/askpass-fifo.8mandos.gz
432
437
        gzip --best --to-stdout plugins.d/plymouth.8mandos \
433
438
                > $(MANDIR)/man8/plymouth.8mandos.gz
 
439
        gzip --best --to-stdout intro.8mandos \
 
440
                > $(MANDIR)/man8/intro.8mandos.gz
434
441
 
435
442
install-client: install-client-nokey
436
443
# Post-installation stuff