diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-11-04 11:20:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-11-04 11:21:54 +0000 |
commit | 65270c4e9318036100401ec1fb09443c1bdb239a (patch) | |
tree | 0d7d4f9feee935de0c830a14457fda2e5d7ba3a8 /postprocess/packcomponents | |
parent | d990bb8cd6d6e93c099c0bc196ef5b46a11f54c1 (diff) |
fix encrypting odf documents
xsec_fw is always built, so always register and install
xsec_xmlsec is built when ENABLE_XMLSEC is true, match
register and install
plugin is built when WITH_MOZILLA is not NO, match
register
Diffstat (limited to 'postprocess/packcomponents')
-rw-r--r-- | postprocess/packcomponents/makefile.mk | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/postprocess/packcomponents/makefile.mk b/postprocess/packcomponents/makefile.mk index 9d3605954125..eb10ee96f6a8 100644 --- a/postprocess/packcomponents/makefile.mk +++ b/postprocess/packcomponents/makefile.mk @@ -277,10 +277,13 @@ my_components += \ my_components += ldapbe2 .END -.IF "$(ENABLE_NSS_MODULE)" == "YES" || "$(SYSTEM_MOZILLA)" == "YES" -my_components += \ - component/xmlsecurity/util/xsec_fw \ - pl +.IF "$(WITH_MOZILLA)" != "NO" +my_components += pl +.END + +my_components += component/xmlsecurity/util/xsec_fw + +.IF "$(ENABLE_XMLSEC)" == "YES" .IF "$(OS)" == "WNT" my_components += component/xmlsecurity/util/xsec_xmlsec.windows .ELSE |