Fix .elc recompile script

This commit is contained in:
Gergely Polonkai 2016-10-04 11:42:34 +02:00
parent 9bfbbd79d8
commit 6f1a4b796d
1 changed files with 8 additions and 3 deletions

View File

@ -1,15 +1,20 @@
#! /bin/sh
cd `dirname $0`
pwd=`pwd`
for file in `find -iname '*.elc'`
do
elc=`basename "$file"`
el="${elc%c}"
cd `dirname "$file"`
if test $file -ot ${file%c}
if test "$elc" -ot "$el"
then
echo "Recompiling ${file%c}"
emacs --batch --eval '(byte-compile-file "'${file%c}'")'
echo "Recompiling ${el}"
emacs --batch --eval '(byte-compile-file "'${el}'")'
fi
cd $pwd