summaryrefslogtreecommitdiff
path: root/coreconf
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2020-05-05 12:29:21 +0000
committerJan-Marek Glogowski <glogow@fbihome.de>2020-05-05 12:29:21 +0000
commit880e1e1521f837149841c7bf5e09a6cc30bffa03 (patch)
tree80b289b73ac0ee7b4bb3439690534d341830d18c /coreconf
parent67fdc06273c2a423e32d6e78f9ae046a7ef3a9db (diff)
downloadnss-hg-880e1e1521f837149841c7bf5e09a6cc30bffa03.tar.gz
Bug 290526 Drop recursive private_exports r=rrelyea
Copying private headers is now simply included in the exports target, as these headers use an extra directory anyway. Differential Revision: https://phabricator.services.mozilla.com/D69021
Diffstat (limited to 'coreconf')
-rw-r--r--coreconf/README4
-rw-r--r--coreconf/rules.mk8
2 files changed, 3 insertions, 9 deletions
diff --git a/coreconf/README b/coreconf/README
index 835c72805..d17e64b50 100644
--- a/coreconf/README
+++ b/coreconf/README
@@ -336,10 +336,6 @@ OVERVIEW of "rules.mk":
clobber_all:: synonym for "realclean::" rule
- private_export:: recursively copy specified
- cross-platform header files to the
- $(SOURCE_XPPRIVATE_DIR) directory
-
IMPORT
------
diff --git a/coreconf/rules.mk b/coreconf/rules.mk
index bbe6a2331..14d951377 100644
--- a/coreconf/rules.mk
+++ b/coreconf/rules.mk
@@ -47,9 +47,9 @@ all::
$(MAKE) libs
ifeq ($(AUTOCLEAN),1)
-autobuild:: clean export private_export libs program install
+autobuild:: clean export libs program install
else
-autobuild:: export private_export libs program install
+autobuild:: export libs program install
endif
platform::
@@ -99,9 +99,7 @@ ifeq ($(OS_TARGET),Darwin)
find $(SOURCE_MD_DIR)/lib -name "*.a" -exec $(RANLIB) {} \;
endif
-export:: $(DIRS)
-
-private_export:: $(DIRS)
+export:: $(DIRS) private_export
release_export:: $(DIRS)