summaryrefslogtreecommitdiff
path: root/xdelta1/libedsio/edsio-comp.in
diff options
context:
space:
mode:
authorJosh MacDonald <josh.macdonald@gmail.com>2016-02-26 21:44:41 -0800
committerJosh MacDonald <josh.macdonald@gmail.com>2016-02-26 21:44:41 -0800
commit275903904f716ff12d56f8acdc27416d29cf27f9 (patch)
treef10a20d74922ebca7a7109dc93ad8d2be561782b /xdelta1/libedsio/edsio-comp.in
parent4b4aed71a959fe11852e45242bb6524be85d3709 (diff)
parentd594fbe514e2a381541a510fe01041e546f56a67 (diff)
Merge branch 'release3_0' into release3_1
Removal of xdelta1.
Diffstat (limited to 'xdelta1/libedsio/edsio-comp.in')
-rw-r--r--xdelta1/libedsio/edsio-comp.in46
1 files changed, 0 insertions, 46 deletions
diff --git a/xdelta1/libedsio/edsio-comp.in b/xdelta1/libedsio/edsio-comp.in
deleted file mode 100644
index 51b55d7..0000000
--- a/xdelta1/libedsio/edsio-comp.in
+++ /dev/null
@@ -1,46 +0,0 @@
1#!/bin/sh
2
3# Derived from:
4
5# Copyright (C) 1995 Free Software Foundation, Inc.
6# François Pinard <pinard@iro.umontreal.ca>, 1995.
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2, or (at your option)
11# any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21
22EMACS=@EMACS@
23TOP_SRCDIR=@top_srcdir_absolute@/libedsio
24
25SCRIPT=$TMPDIR/script.$$
26
27trap "rm -f $SCRIPT" 0
28
29if test $# != 1; then
30 echo 1>&2 "usage: $0 INPUT"
31 exit 1
32else
33 if test -z "$EMACS" || test "$EMACS" = "t"; then
34 # Value of "t" means we are running in a shell under Emacs.
35 # Just assume Emacs is called "emacs".
36 EMACS=emacs
37 fi
38
39 INPUT=$1
40 INPUT_PREF=`echo $INPUT | sed 's/\.[^\.]*$//'`
41
42 echo "(load-file \"$TOP_SRCDIR/edsio.el\") " \
43 "(generate-ser \"$INPUT\" \"$INPUT_PREF\")" > $SCRIPT
44
45 $EMACS --batch -l $SCRIPT
46fi