mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-01 11:14:55 +00:00
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.
This commit is contained in:
parent
ac5475dacb
commit
02cbd38ae4
@ -1,3 +1,9 @@
|
||||
2015-01-24 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
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 <eliz@gnu.org>
|
||||
|
||||
* unidata/uvs.el (uvs-print-table-ivd): Call set-binary-mode on
|
||||
|
@ -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
|
||||
|
||||
|
@ -1,3 +1,10 @@
|
||||
2015-01-24 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
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 <eggert@cs.ucla.edu>
|
||||
|
||||
Check exit statuses in lib-src/Makefile
|
||||
|
@ -58,11 +58,21 @@ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
||||
am__v_CCLD_0 = @echo " CCLD " $@;
|
||||
am__v_CCLD_1 =
|
||||
|
||||
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
||||
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
||||
am__v_GEN_0 = @echo " GEN " $@;
|
||||
am__v_GEN_1 =
|
||||
|
||||
AM_V_RC = $(am__v_RC_@AM_V@)
|
||||
am__v_RC_ = $(am__v_RC_@AM_DEFAULT_V@)
|
||||
am__v_RC_0 = @echo " RC " $@;
|
||||
am__v_RC_1 =
|
||||
|
||||
AM_V_at = $(am__v_at_@AM_V@)
|
||||
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
||||
am__v_at_0 = @
|
||||
am__v_at_1 =
|
||||
|
||||
# ==================== Where To Install Things ====================
|
||||
|
||||
# Location to install Emacs.app under GNUstep / Mac OS X.
|
||||
|
Loading…
Reference in New Issue
Block a user