diff options
| author | Glenn Morris | 2013-10-23 19:29:29 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-10-23 19:29:29 -0700 |
| commit | bc00793e2a90838e05d76ca17f78ee1a17e4c436 (patch) | |
| tree | f5ea4fa5cebd5282d7e0f0733384e1a2dc44eb78 | |
| parent | e43817c1e0a08cd0e5b1f8f364c63f3043da8a08 (diff) | |
| download | emacs-bc00793e2a90838e05d76ca17f78ee1a17e4c436.tar.gz emacs-bc00793e2a90838e05d76ca17f78ee1a17e4c436.zip | |
* leim/Makefile.in (.el.elc, changed.tit, changed.misc, leim-list.el)
($(srcdir)/ja-dic/ja-dic.el, check-declare):
Remove unnecessary path in -l argument (RUN_EMACS sets EMACSLOADPATH).
We just need to be careful because "quail" is also a directory...
| -rw-r--r-- | leim/ChangeLog | 6 | ||||
| -rw-r--r-- | leim/Makefile.in | 14 |
2 files changed, 13 insertions, 7 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 4a629765386..45a73f0be8c 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-10-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (.el.elc, changed.tit, changed.misc, leim-list.el) | ||
| 4 | ($(srcdir)/ja-dic/ja-dic.el, check-declare): Remove unnecessary | ||
| 5 | path in -l argument (RUN_EMACS sets EMACSLOADPATH). | ||
| 6 | |||
| 1 | 2013-10-23 Glenn Morris <rgm@gnu.org> | 7 | 2013-10-23 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * Makefile.in (abs_srcdir): New, set by configure. | 9 | * Makefile.in (abs_srcdir): New, set by configure. |
diff --git a/leim/Makefile.in b/leim/Makefile.in index eb81e1b2add..d0e77e2f0fb 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in | |||
| @@ -77,7 +77,7 @@ TIT_MISC=${CHINESE_TIT} ${MISC} | |||
| 77 | 77 | ||
| 78 | .el.elc: | 78 | .el.elc: |
| 79 | @echo Compiling $< | 79 | @echo Compiling $< |
| 80 | @${RUN_EMACS} -l "${buildlisppath}/international/quail" -f batch-byte-compile $< | 80 | @${RUN_EMACS} -l international/quail -f batch-byte-compile $< |
| 81 | 81 | ||
| 82 | all: leim-list.el compile-main | 82 | all: leim-list.el compile-main |
| 83 | .PHONY: all | 83 | .PHONY: all |
| @@ -110,7 +110,7 @@ ${CHINESE_TIT}: changed.tit | |||
| 110 | ## It doesn't seem possible to do this with VPATH and suffix rules. | 110 | ## It doesn't seem possible to do this with VPATH and suffix rules. |
| 111 | changed.tit: ${TIT_SOURCES} | 111 | changed.tit: ${TIT_SOURCES} |
| 112 | @${MKDIR_P} quail | 112 | @${MKDIR_P} quail |
| 113 | ${RUN_EMACS} -l "${buildlisppath}/international/titdic-cnv" \ | 113 | ${RUN_EMACS} -l titdic-cnv \ |
| 114 | -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \ | 114 | -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \ |
| 115 | echo "changed" > $@ | 115 | echo "changed" > $@ |
| 116 | 116 | ||
| @@ -127,24 +127,24 @@ ${MISC}: changed.misc | |||
| 127 | 127 | ||
| 128 | changed.misc: ${MISC_SOURCES} | 128 | changed.misc: ${MISC_SOURCES} |
| 129 | @${MKDIR_P} quail | 129 | @${MKDIR_P} quail |
| 130 | ${RUN_EMACS} -l "${buildlisppath}/international/titdic-cnv" \ | 130 | ${RUN_EMACS} -l titdic-cnv \ |
| 131 | -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \ | 131 | -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \ |
| 132 | echo "changed" > $@ | 132 | echo "changed" > $@ |
| 133 | 133 | ||
| 134 | leim-list.el: ${TIT_MISC} ${srcdir}/leim-ext.el | 134 | leim-list.el: ${TIT_MISC} ${srcdir}/leim-ext.el |
| 135 | rm -f leim-list.el | 135 | rm -f leim-list.el |
| 136 | if [ "`cd ${srcdir} && /bin/pwd`" = "`/bin/pwd`" ] ; then \ | 136 | if [ "`cd ${srcdir} && /bin/pwd`" = "`/bin/pwd`" ] ; then \ |
| 137 | ${RUN_EMACS} -l "${buildlisppath}/international/quail" \ | 137 | ${RUN_EMACS} -l international/quail \ |
| 138 | --eval "(update-leim-list-file \".\")" ; \ | 138 | --eval "(update-leim-list-file \".\")" ; \ |
| 139 | else \ | 139 | else \ |
| 140 | ${RUN_EMACS} -l "${buildlisppath}/international/quail" \ | 140 | ${RUN_EMACS} -l international/quail \ |
| 141 | --eval "(update-leim-list-file \".\" (unmsys--file-name \"${srcdir}\"))" ; \ | 141 | --eval "(update-leim-list-file \".\" (unmsys--file-name \"${srcdir}\"))" ; \ |
| 142 | fi | 142 | fi |
| 143 | sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@ | 143 | sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@ |
| 144 | 144 | ||
| 145 | $(srcdir)/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L | 145 | $(srcdir)/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L |
| 146 | @$(MKDIR_P) $(srcdir)/ja-dic | 146 | @$(MKDIR_P) $(srcdir)/ja-dic |
| 147 | $(RUN_EMACS) -batch -l "$(buildlisppath)/international/ja-dic-cnv" \ | 147 | $(RUN_EMACS) -batch -l ja-dic-cnv \ |
| 148 | -f batch-skkdic-convert -dir "$(srcdir)/ja-dic" \ | 148 | -f batch-skkdic-convert -dir "$(srcdir)/ja-dic" \ |
| 149 | "$(srcdir)/SKK-DIC/SKK-JISYO.L" | 149 | "$(srcdir)/SKK-DIC/SKK-JISYO.L" |
| 150 | 150 | ||
| @@ -196,5 +196,5 @@ extraclean: maintainer-clean | |||
| 196 | .PHONY: check-declare | 196 | .PHONY: check-declare |
| 197 | 197 | ||
| 198 | check-declare: | 198 | check-declare: |
| 199 | $(RUN_EMACS) -l "$(buildlisppath)/emacs-lisp/check-declare" \ | 199 | $(RUN_EMACS) -l check-declare \ |
| 200 | --eval '(check-declare-directory (unmsys--file-name "$(srcdir)"))' | 200 | --eval '(check-declare-directory (unmsys--file-name "$(srcdir)"))' |