diff lib-src/update-elc.sh @ 80:1ce6082ce73f r20-0b90

Import from CVS: tag r20-0b90
author cvs
date Mon, 13 Aug 2007 09:06:37 +0200
parents c7528f8e288d
children ac0620f6398e
line wrap: on
line diff
--- a/lib-src/update-elc.sh	Mon Aug 13 09:05:44 2007 +0200
+++ b/lib-src/update-elc.sh	Mon Aug 13 09:06:37 2007 +0200
@@ -39,8 +39,8 @@
 els=/tmp/rcl1.$$ ; elcs=/tmp/rcl2.$$
 rm -f $els $elcs
 trap "rm -f $els $elcs" 0 1 2 3 15
-find lisp/. -name SCCS -prune -o -name '*.el'  -print                    | sort > $els
-find lisp/. -name SCCS -prune -o -name '*.elc' -print | sed 's/elc$/el/' | sort > $elcs
+find lisp/. $prune_vc -name '*.el'  -print                    | sort > $els
+find lisp/. $prune_vc -name '*.elc' -print | sed 's/elc$/el/' | sort > $elcs
 
 
 echo "Deleting .elc files without .el files..."
@@ -78,15 +78,14 @@
 }
 
 make_special vm
-make_special ediff elc
-make_special viper elc
+#make_special ediff elc
+#make_special viper elc
 make_special gnus  some
 make_special w3
-make_special url		# really part of w3
 make_special hyperbole elc
 make_special oobr HYPB_ELC='' elc
 make_special eos -k		# not stricly necessary...
-make_special ilisp elc -f Makefile
+make_special ilisp elc
 
 ignore_pattern=''
 for dir in $ignore_dirs ; do
@@ -122,9 +121,9 @@
 
 
 echo "Compiling files with out-of-date .elc..."
-find lisp/. -name CVS -prune -o -name SCCS -prune -o -type d -print | \
+find lisp/* $prune_vc -type d -print | \
  sed "$ignore_pattern" | \
- xargs -t $REAL -batch -q -no-site-file -f batch-byte-recompile-directory
+ xargs -t $BYTECOMP -f batch-byte-recompile-directory
 echo "Compiling files with out-of-date .elc... Done"