mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
(install): Be sure to make ${INSTALLDIR} before `cd' to it.
This commit is contained in:
parent
551730f8f4
commit
94461c214f
@ -1,3 +1,8 @@
|
||||
2006-10-12 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* Makefile.in (install): Be sure to make ${INSTALLDIR} before `cd'
|
||||
to it.
|
||||
|
||||
2006-10-05 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* quail/latin-ltx.el: Fix typo in previous change.
|
||||
|
@ -216,13 +216,12 @@ leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc ${srcdir}/leim
|
||||
sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
|
||||
|
||||
install: all
|
||||
if [ ! -d ${INSTALLDIR} ] ; then \
|
||||
${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
|
||||
else true; fi
|
||||
if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
|
||||
if [ -d ${INSTALLDIR} ] ; then \
|
||||
rm -rf ${INSTALLDIR}/leim-list.el; \
|
||||
rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
|
||||
else \
|
||||
${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
|
||||
fi; \
|
||||
rm -rf ${INSTALLDIR}/leim-list.el; \
|
||||
rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
|
||||
echo "Copying leim files to ${INSTALLDIR} ..." ; \
|
||||
if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
|
||||
tar -chf - leim-list.el quail ja-dic \
|
||||
|
Loading…
Reference in New Issue
Block a user