comparison build-aux/elisp-comp @ 16248:ed875a30bb12

autoupdate
author Karl Berry <karl@freefriends.org>
date Sat, 07 Jan 2012 08:49:48 -0800
parents b2436031626f
children c149bb2eb2b7
comparison
equal deleted inserted replaced
16247:b8b6b841b8bd 16248:ed875a30bb12
28 # bugs to <bug-automake@gnu.org> or send patches to 28 # bugs to <bug-automake@gnu.org> or send patches to
29 # <automake-patches@gnu.org>. 29 # <automake-patches@gnu.org>.
30 30
31 case $1 in 31 case $1 in
32 '') 32 '')
33 echo "$0: No files. Try \`$0 --help' for more information." 1>&2 33 echo "$0: No files. Try '$0 --help' for more information." 1>&2
34 exit 1; 34 exit 1;
35 ;; 35 ;;
36 -h | --h*) 36 -h | --h*)
37 cat <<\EOF 37 cat <<\EOF
38 Usage: elisp-comp [--help] [--version] FILES... 38 Usage: elisp-comp [--help] [--version] FILES...
39 39
40 This script byte-compiles all `.el' files listed as FILES using GNU 40 This script byte-compiles all '.el' files listed as FILES using GNU
41 Emacs, and put the resulting `.elc' files into the current directory, 41 Emacs, and put the resulting '.elc' files into the current directory,
42 so disregarding the original directories used in `.el' arguments. 42 so disregarding the original directories used in '.el' arguments.
43 43
44 This script manages in such a way that all Emacs LISP files to 44 This script manages in such a way that all Emacs LISP files to
45 be compiled are made visible between themselves, in the event 45 be compiled are made visible between themselves, in the event
46 they require or load-library one another. 46 they require or load-library one another.
47 47