--- gforth/elisp-comp 1998/07/08 16:47:31 1.1 +++ gforth/elisp-comp 2002/12/24 14:47:24 1.2 @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1995 Free Software Foundation, Inc. +# Copyright 1995 Free Software Foundation, Inc. # François Pinard , 1995. # # This program is free software; you can redistribute it and/or modify @@ -16,6 +16,11 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + # This script byte-compiles all `.el' files which are part of its # arguments, using GNU Emacs, and put the resulting `.elc' files into # the current directory, so disregarding the original directories used @@ -41,7 +46,7 @@ else cd $tempdir echo "(setq load-path (cons nil load-path))" > script - $EMACS -q -batch -l script -f batch-byte-compile *.el + $EMACS -batch -q -l script -f batch-byte-compile *.el mv *.elc .. cd ..