diff options
author | Andre Fischer <af@apache.org> | 2011-12-16 12:59:55 +0000 |
---|---|---|
committer | Andre Fischer <af@apache.org> | 2011-12-16 12:59:55 +0000 |
commit | 1a85ae2b616d939c5beba46e550f7837fc693b2b (patch) | |
tree | 84da573ecba70ca173af47cd24b84e6fc88cad55 /nss | |
parent | 54de47df2adf9cac89cd315a2b340c858339c830 (diff) |
118674: Made category B code optional and disabled by default.
Diffstat (limited to 'nss')
-rw-r--r-- | nss/makefile.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nss/makefile.mk b/nss/makefile.mk index eb264de2ac00..55fca0d2d60c 100644 --- a/nss/makefile.mk +++ b/nss/makefile.mk @@ -37,9 +37,11 @@ TARGET=nss # --- Files -------------------------------------------------------- .IF "$(ENABLE_NSS_MODULE)"!="YES" + all: @echo "NSS will not be built. ENABLE_NSS_MODULE is '$(ENABLE_NSS_MODULE)'" -.ENDIF + +.ELSE TARFILE_NAME=nss-3.12.6-with-nspr-4.8.4 TARFILE_MD5=b92261a5679276c400555004937af965 @@ -180,3 +182,5 @@ OUTDIR2INC=mozilla$/dist$/public$/nss mozilla$/dist$/out$/include .INCLUDE : set_ext.mk .INCLUDE : target.mk .INCLUDE : tg_ext.mk + +.ENDIF |