emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 02cbd38: Fix a couple of AM_V_GEN bugs


From: Paul Eggert
Subject: [Emacs-diffs] master 02cbd38: Fix a couple of AM_V_GEN bugs
Date: Sat, 24 Jan 2015 00:09:01 +0000

branch: master
commit 02cbd38ae4e4a1e4d309a1bb27c031e154c53f27
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix a couple of AM_V_GEN bugs
    
    * admin/unidata/Makefile.in (unifiles):
    Use AM_V_at instead of AM_V_GEN, since this doesn't generate a file.
    * lib-src/Makefile.in (AM_V_GEN, am__v_GEN_, am__v_GEN_0, am__v_GEN_1)
    (AM_V_at, am__v_at_, am__v_at_0, am__v_at_1):
    New macros, copied from ../src/Makefile.in.
---
 admin/ChangeLog           |    6 ++++++
 admin/unidata/Makefile.in |    2 +-
 lib-src/ChangeLog         |    7 +++++++
 lib-src/Makefile.in       |   10 ++++++++++
 4 files changed, 24 insertions(+), 1 deletions(-)

diff --git a/admin/ChangeLog b/admin/ChangeLog
index 70d1714..e692ca0 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,9 @@
+2015-01-24  Paul Eggert  <address@hidden>
+
+       Fix a couple of AM_V_GEN bugs
+       * unidata/Makefile.in (unifiles): Use AM_V_at instead of AM_V_GEN,
+       since this doesn't generate a file.
+
 2015-01-15  Eli Zaretskii  <address@hidden>
 
        * unidata/uvs.el (uvs-print-table-ivd): Call set-binary-mode on
diff --git a/admin/unidata/Makefile.in b/admin/unidata/Makefile.in
index 1396f09..6c81d32 100644
--- a/admin/unidata/Makefile.in
+++ b/admin/unidata/Makefile.in
@@ -90,7 +90,7 @@ ${unidir}/charprop.el: ${srcdir}/unidata-gen.el \
 ## to generate a Makefile fragment explicitly listing the uni- files,
 ## which this file could include.  If no fragment, rebuild everything.
 unifiles: ${unidir}/charprop.el
-       $(AM_V_GEN)for f in `sed -n 's/^;; FILE: //p' < $<`; do \
+       $(AM_V_at)for f in `sed -n 's/^;; FILE: //p' < $<`; do \
          [ -f $(unidir)/$$f ] || exec $(MAKE) PHONY_EXTRAS=$< $<; \
        done
 
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 6cf82e9..8d2c95e 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,10 @@
+2015-01-24  Paul Eggert  <address@hidden>
+
+       Fix a couple of AM_V_GEN bugs
+       * Makefile.in (AM_V_GEN, am__v_GEN_, am__v_GEN_0, am__v_GEN_1)
+       (AM_V_at, am__v_at_, am__v_at_0, am__v_at_1):
+       New macros, copied from ../src/Makefile.in.
+
 2015-01-22  Paul Eggert  <address@hidden>
 
        Check exit statuses in lib-src/Makefile
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 1b329c2..d2705e7 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -58,11 +58,21 @@ am__v_CCLD_ = $(address@hidden@)
 am__v_CCLD_0 = @echo "  CCLD    " $@;
 am__v_CCLD_1 =
 
+AM_V_GEN = $(address@hidden@)
+am__v_GEN_ = $(address@hidden@)
+am__v_GEN_0 = @echo "  GEN     " $@;
+am__v_GEN_1 =
+
 AM_V_RC = $(address@hidden@)
 am__v_RC_ = $(address@hidden@)
 am__v_RC_0 = @echo "  RC      " $@;
 am__v_RC_1 =
 
+AM_V_at = $(address@hidden@)
+am__v_at_ = $(address@hidden@)
+am__v_at_0 = @
+am__v_at_1 =
+
 # ==================== Where To Install Things ====================
 
 # Location to install Emacs.app under GNUstep / Mac OS X.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]