~ubuntu-branches/ubuntu/trusty/ca-certificates/trusty-proposed

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Fumitoshi UKAI
  • Date: 2004-08-09 03:23:20 UTC
  • mfrom: (1.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040809032320-29vpp5g9f4xroy2g
Tags: 20040809
previous version was not fixed Bug#255933 correctly.
update-ca-certificates now remove symlinks of deselected entries 
in ca-certificates.conf
closes: Bug#255933

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Makefile
3
3
#
4
4
 
5
 
CERTSDIR = /etc/ssl/certs
6
 
SUBDIRS = mozilla debian.org
 
5
CERTSDIR = /usr/share/ca-certificates
 
6
SUBDIRS = spi-inc.org mozilla \
 
7
        brasil.gov.br signet.pl quovadis.bm
7
8
 
8
9
all:
9
10
        for dir in $(SUBDIRS); do \
17
18
 
18
19
install:
19
20
        for dir in $(SUBDIRS); do \
20
 
          $(MAKE) -C $$dir install CERTSDIR=$(DESTDIR)/$(CERTSDIR); \
21
 
        done
22
 
 
 
21
          mkdir $(DESTDIR)/$(CERTSDIR)/$$dir; \
 
22
          $(MAKE) -C $$dir install CERTSDIR=$(DESTDIR)/$(CERTSDIR)/$$dir; \
 
23
        done
 
24
        for dir in sbin; do \
 
25
          $(MAKE) -C $$dir install CERTSDIR=$(DESTDIR)/$(CERTSDIR)/$$dir; \
 
26
        done
23
27