mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 08:47:41 +01:00
9ea2a99edb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15071 a95241bf-73f2-0310-859d-f6bbb57e9c96
8 lines
264 B
Bash
Executable File
8 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: elisp-comp,v 1.1 2004/10/28 18:14:08 zooey 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
|