diff options
author | Kenichi Handa <handa@m17n.org> | 1997-09-04 01:12:08 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-09-04 01:12:08 +0000 |
commit | b0a22482edf6e4d5d52c603b64e679878da7a18a (patch) | |
tree | f7051d298b3d053cfe3d492531d8a68d95f8514d /leim/Makefile.in | |
parent | a383fece3ec1dfd37b25a9cab2987a26cb507806 (diff) | |
download | emacs-b0a22482edf6e4d5d52c603b64e679878da7a18a.tar.gz |
(install): Copy `skk' subdirectory too.
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index a5ff75e81db..f23453c8bdf 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -155,13 +155,16 @@ install: all rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \ echo "Copying leim files to ${INSTALLDIR} ..." ; \ cp leim-list.el ${INSTALLDIR} ; \ - tar -cf - leim-list.el ${SUBDIRS} \ + 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 \ + tar -cf - leim-list.el quail \ | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ - if [ x`(cd ${srcdir}; /bin/pwd)` != x`(/bin/pwd)` ] ; then \ cd ${srcdir}; \ - tar -cf - ${SUBDIRS} \ + tar -cf - quail skk \ | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ - else true; fi; \ + fi; \ else true; fi clean mostlyclean: |