Show
Ignore:
Timestamp:
2005年11月26日 08時33分26秒 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-CVS_HEAD/leim/Makefile.in

    r3799 r3988  
    22# Copyright (C) 1997,98,1999,2000,2001 Electrotechnical Laboratory, JAPAN. 
    33#   Licensed to the Free Software Foundation. 
    4 # Copyright (C) 1997,98,1999,2000,01,02,03,2004 
     4# Copyright (C) 1997,98,1999,2000,01,02,03,2004,2005 
    55#   Free Software Foundation, Inc. 
    66# Copyright (C) 2001,02,03,2004 
     
    3737# Where to install LEIM files. 
    3838INSTALLDIR=${datadir}/emacs/${version}/leim 
     39 
     40GZIP_PROG = @GZIP_PROG@ 
    3941 
    4042# On Xenix and the IBM RS6000, double-dot gets screwed up. 
     
    239241          rm -f  ${INSTALLDIR}/*.orig     ${INSTALLDIR}/*/*.orig ; \ 
    240242        else true; fi 
     243        -unset CDPATH; \ 
     244        if [ -n "${GZIP_PROG}" ]; \ 
     245        then \ 
     246           echo "Compressing *.el ..." ; \ 
     247           (cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \ 
     248                ${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \ 
     249            done) \ 
     250        else true; fi 
    241251        -chmod -R a+r ${INSTALLDIR} 
    242252