From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Petter Reinholdtsen Newsgroups: gmane.emacs.bugs Subject: Small install patch for emacs leim 21.2 Date: Wed, 15 May 2002 17:29:47 +0200 Sender: bug-gnu-emacs-admin@gnu.org Message-ID: NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1021476653 22725 127.0.0.1 (15 May 2002 15:30:53 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 15 May 2002 15:30:53 +0000 (UTC) Return-path: Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 1780js-0005uQ-00 for ; Wed, 15 May 2002 17:30:52 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 1780kB-00077w-00; Wed, 15 May 2002 11:31:11 -0400 Original-Received: from mons.uio.no ([129.240.130.14]) by fencepost.gnu.org with smtp (Exim 3.34 #1 (Debian)) id 1780iv-0006qz-00 for ; Wed, 15 May 2002 11:29:53 -0400 Original-Received: from saruman.uio.no ([129.240.201.202]) by mons.uio.no with esmtp (Exim 2.12 #7) id 1780iq-00046s-00; Wed, 15 May 2002 17:29:48 +0200 Original-Received: from pre by saruman.uio.no with local (Exim 2.12 #7) id 1780ip-0006tW-00; Wed, 15 May 2002 17:29:47 +0200 Original-To: bug-gnu-emacs@gnu.org Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:1380 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:1380 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