summaryrefslogtreecommitdiff
path: root/coreconf
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2020-05-05 12:31:50 +0000
committerJan-Marek Glogowski <glogow@fbihome.de>2020-05-05 12:31:50 +0000
commit2716dce086b19c5523a4e66caebaa03073bc8ed3 (patch)
tree57122644143f64c3c521a3dd839b6db7bac2b38e /coreconf
parentc1094b4539e13e528ab5fc43705d9a32b37d1da9 (diff)
downloadnss-hg-2716dce086b19c5523a4e66caebaa03073bc8ed3.tar.gz
Bug 1629553 Drop duplicate header DIR variables r=rrelyea
Differential Revision: https://phabricator.services.mozilla.com/D70987
Diffstat (limited to 'coreconf')
-rw-r--r--coreconf/README7
-rw-r--r--coreconf/rules.mk6
2 files changed, 2 insertions, 11 deletions
diff --git a/coreconf/README b/coreconf/README
index 50d364c55..b9276833a 100644
--- a/coreconf/README
+++ b/coreconf/README
@@ -495,13 +495,6 @@ OVERVIEW of "rules.mk":
CATEGORY/rule:: Purpose
=================== =============================
- $(PUBLIC_EXPORT_DIR):: create directory used to
- house public "C" header files
-
- $(PRIVATE_EXPORT_DIR):: create directory used to
- house private "C" header
- files
-
$(SOURCE_XP_DIR)/
release/include:: create directory used to
house "C" header files
diff --git a/coreconf/rules.mk b/coreconf/rules.mk
index b80f6eb84..df2116750 100644
--- a/coreconf/rules.mk
+++ b/coreconf/rules.mk
@@ -381,12 +381,10 @@ endif
endef # copy_varlist_into_dir_RULE
# export rule
-PUBLIC_EXPORT_DIR = $(SOURCE_XP_DIR)/public/$(MODULE)
-$(eval $(call copy_varlist_into_dir_RULE,export,EXPORTS,$(PUBLIC_EXPORT_DIR)))
+$(eval $(call copy_varlist_into_dir_RULE,export,EXPORTS,$(SOURCE_XPHEADERS_DIR)))
# private_export rule
-PRIVATE_EXPORT_DIR = $(SOURCE_XP_DIR)/private/$(MODULE)
-$(eval $(call copy_varlist_into_dir_RULE,private_export,PRIVATE_EXPORTS,$(PRIVATE_EXPORT_DIR)))
+$(eval $(call copy_varlist_into_dir_RULE,private_export,PRIVATE_EXPORTS,$(SOURCE_XPPRIVATE_DIR)))
##########################################################################
### RULES FOR RUNNING REGRESSION SUITE TESTS