diff options
author | Kenichi Handa <handa@m17n.org> | 1997-09-04 01:22:26 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-09-04 01:22:26 +0000 |
commit | aa5cc10d1a34d7a193b9c67377294cba1e0db0a3 (patch) | |
tree | 243c604f3051190f3814e1655d1fb8b322eef52e /leim | |
parent | dc08b15f9d1f407b50fc799249cacb43e0428fe9 (diff) | |
download | emacs-aa5cc10d1a34d7a193b9c67377294cba1e0db0a3.tar.gz |
(install): Fix previous change.
Diffstat (limited to 'leim')
-rw-r--r-- | leim/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index eaef776334d..aae83b8f424 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -154,7 +154,7 @@ install: all rm -rf ${INSTALLDIR}/leim-list.el; \ rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \ echo "Copying leim files to ${INSTALLDIR} ..." ; \ - if [ x`(cd ${srcdir}; /bin/pwd)` == x`(/bin/pwd)` ] ; then \ + if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \ tar -cf - leim-list.el quail skk \ | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ else \ |