summaryrefslogtreecommitdiff
path: root/NG-NEWS
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-08-12 18:08:25 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-08-13 17:32:02 +0200
commitfcea22c906da553605c407284c105deb8f60caee (patch)
tree3d1ebe2e308b38a63ae1f097b58cc70d72e4b509 /NG-NEWS
parenta0f51e4b3e7088e89fd64bd3c3af2f7629555b60 (diff)
downloadautomake-fcea22c906da553605c407284c105deb8f60caee.tar.gz
[ng] dist: vars DIST_TARGETS and DIST_ARCHIVES are no more public
Turn them into two internal variables. This will clean up the interface a bit, and make the new planned dist-related APIs (still to be implemented) simpler to use. * lib/am/distcheck.mk (DIST_TARGETS, DIST_ARCHIVES): Rename ... (am.dist.default-targets, am.dist.default-archives): ... like these, respectively. (distcheck, dist, dist-all): Adjust. * t/dist-formats.tap (nogzip): Likewise. * NG-NEWS: Update. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'NG-NEWS')
-rw-r--r--NG-NEWS19
1 files changed, 11 insertions, 8 deletions
diff --git a/NG-NEWS b/NG-NEWS
index 7d3bc757e..8f3cf72b8 100644
--- a/NG-NEWS
+++ b/NG-NEWS
@@ -212,14 +212,17 @@ Distribution
EXTRA_DIST = $(wildcard doc/*.txt $(srcdir)/doc/*.txt) # Better.
-* The variables $(DISTFILES), $(DIST_COMMON) and $(DIST_SOURCES) had
- never been documented in mainline Automake, and were always intended
- to be internal variables. But that was not clear from their names.
- So we have renamed rename like this:
-
- DISTFILES => am.dist.all-files
- DIST_COMMON => am.dist.common-files
- DIST_SOURCES => am.dist.sources
+* The make variables $(DISTFILES), $(DIST_COMMON), $(DIST_SOURCES),
+ $(DIST_TARGETS), $(DIST_ARCHIVES) had never been documented
+ in mainline Automake, and were always intended to be internal
+ variables. But that was not clear from their names. So we have
+ renamed rename like this:
+
+ DISTFILES => am.dist.all-files
+ DIST_COMMON => am.dist.common-files
+ DIST_SOURCES => am.dist.sources
+ DIST_TARGETS => am.dist.default-targets
+ DIST_ARCHIVES => am.dist.default-archives
Do not use any of these variables in your Makefiles!