Fix the build after leim-related changes.
msdos/sedleim.inp (RUN_EMACS): Replace BUILT_EMACS with EMACS. Remove stale editing of "else make quail". (.PHONY, compile-targets): Remove targets. (compile-main): Edit into something that can be done without requiring a Unixy shell. (bootstrap-clean): Likewise: edit to not require $(setwins). msdos/sed1v2.inp: Edit "cd $(leimdir) && $(MAKE) ..." into the equivalent "$(MAKE) $(MFLAGS) -C $(leimdir) ..." command.
This commit is contained in:
parent
6114eb1503
commit
b42287d22d
3 changed files with 29 additions and 4 deletions
|
|
@ -1,3 +1,15 @@
|
|||
2012-04-21 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* sedleim.inp (RUN_EMACS): Replace BUILT_EMACS with EMACS.
|
||||
Remove stale editing of "else make quail".
|
||||
(.PHONY, compile-targets): Remove targets.
|
||||
(compile-main): Edit into something that can be done without
|
||||
requiring a Unixy shell.
|
||||
(bootstrap-clean): Likewise: edit to not require $(setwins).
|
||||
|
||||
* sed1v2.inp: Edit "cd $(leimdir) && $(MAKE) ..." into the
|
||||
equivalent "$(MAKE) $(MFLAGS) -C $(leimdir) ..." command.
|
||||
|
||||
2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
configure: new option --enable-gcc-warnings (Bug#11207)
|
||||
|
|
|
|||
|
|
@ -152,6 +152,8 @@ s/^ [^ ]*move-if-change / update /
|
|||
/^ echo[ ][ ]*timestamp/s/echo /djecho /
|
||||
/^ .*djecho timestamp/a\
|
||||
@rm -f gl-tmp
|
||||
/^ cd \$(leimdir) && \$(MAKE)/c\
|
||||
$(MAKE) $(MFLAGS) -C $(leimdir) leim-list.el EMACS=$(bootstrap_exe)
|
||||
/^ cd \$(lib) && \$(MAKE)/c\
|
||||
$(MAKE) $(MFLAGS) -C $(lib) libgnu.a
|
||||
/^RUN_TEMACS *=/s|`/bin/pwd`|.|
|
||||
|
|
|
|||
|
|
@ -33,14 +33,11 @@ s|\([ ]\)echo|\1djecho|g
|
|||
|
||||
/RUN_EMACS *=/,/^$/c\
|
||||
export EMACSLOADPATH=${buildlisppath}\
|
||||
RUN_EMACS = ${BUILT_EMACS} -batch --no-site-file
|
||||
RUN_EMACS = ${EMACS} -batch --no-site-file
|
||||
|
||||
/^ cd ../c\
|
||||
${MAKE} -C ../src ${MFLAGS} emacs
|
||||
|
||||
/else make quail/c\
|
||||
if not exist quail\\nul make quail
|
||||
|
||||
/if \[ -f $@ \]\; then true/d
|
||||
/fi$/s/; fi$//
|
||||
|
||||
|
|
@ -51,9 +48,23 @@ RUN_EMACS = ${BUILT_EMACS} -batch --no-site-file
|
|||
/^ --eval/,/; \\$/s|\; \\||
|
||||
}
|
||||
|
||||
/^setwins=/,/^$/d
|
||||
/^\.PHONY: compile-targets/d
|
||||
/^compile-targets:/d
|
||||
/^compile-main:/,/^$/c\
|
||||
compile-main: ${TIT_MISC}\
|
||||
$(MAKE) $(MFLAGS) $(foreach f,$(wildcard ja-dic/*.el),$(basename $f).elc)\
|
||||
$(MAKE) $(MFLAGS) $(foreach f,$(wildcard quail/*.el),$(basename $f).elc)\
|
||||
|
||||
|
||||
/^install:/,/^$/c\
|
||||
install: all\
|
||||
|
||||
/^bootstrap-clean:/,/^$/c\
|
||||
bootstrap-clean: clean\
|
||||
rm -f ja-dic/*.elc quail/*.elc\
|
||||
|
||||
|
||||
/^ if test -f/d
|
||||
/^distclean:/,/^$/ {
|
||||
s|\(rm -f Makefile\)|\1 stamp-subdir|
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue