mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
253c2b00b7
patches in a bit. -josh
8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: elisp-comp,v 1.2 1996/09/26 23:41:08 karl Exp $
|
|
# Trivial script to compile the Elisp files.
|
|
setpath=${TMPDIR-/tmp}/elc.$$
|
|
echo "(setq load-path (cons nil load-path))" > $setpath
|
|
emacs -batch -l $setpath -f batch-byte-compile "$@"
|
|
rm -f $setpath
|