bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Small install patch for emacs leim 21.2


From: Petter Reinholdtsen
Subject: Small install patch for emacs leim 21.2
Date: Wed, 15 May 2002 17:29:47 +0200

Here is a small patch to the install rules for emacs leim 21.2.  When
I compile emacs in a Store linktree (generated using lndir), the lisp
files are left behind, and only symlinks are copied.  Adding 'h' to
the tar option list forces it to follow symlinks, and copy the real
files.  Please include this patch in the next emacs release.

I reported this bug for the emacs package for version 21.1, and it was
fixed in emacs 21.2.  Then, I did not check the other emacs-related
packages. It might be a good idea to check these (elisp-manual comes
to mind :-), to see if the problem is present there as well.

diff -ur src-21.2/leim/Makefile.in src-21.2-sun4os58/leim/Makefile.in
--- src-21.2/leim/Makefile.in   Thu May 24 13:57:18 2001
+++ src-21.2-sun4os58/leim/Makefile.in  Wed May 15 17:19:18 2002
@@ -198,13 +198,13 @@
          rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
          echo "Copying leim files to ${INSTALLDIR} ..." ; \
          if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
-           tar -cf - leim-list.el quail ja-dic \
+           tar -chf - leim-list.el quail ja-dic \
                | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
          else \
-           tar -cf - leim-list.el quail \
+           tar -chf - leim-list.el quail \
                | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
            cd ${srcdir}; \
-           tar -cf - quail/* ja-dic \
+           tar -chf - quail/* ja-dic \
                | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
          fi; \
        else true; fi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]