aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian/notmuch.emacsen-install
diff options
context:
space:
mode:
Diffstat (limited to 'debian/notmuch.emacsen-install')
-rwxr-xr-x[-rw-r--r--]debian/notmuch.emacsen-install14
1 files changed, 4 insertions, 10 deletions
diff --git a/debian/notmuch.emacsen-install b/debian/notmuch.emacsen-install
index 2611aed2..67602604 100644..100755
--- a/debian/notmuch.emacsen-install
+++ b/debian/notmuch.emacsen-install
@@ -18,28 +18,22 @@ echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}
#else
# SITEFLAG="--no-site-file"
#fi
-FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile"
+#FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile"
+FLAGS="--no-site-file -q -batch -l path.el -f batch-byte-compile"
ELDIR=/usr/share/emacs/site-lisp/${PACKAGE}
ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
-# Install-info-altdir does not actually exist.
-# Maybe somebody will write it.
-if test -x /usr/sbin/install-info-altdir; then
- echo install/${PACKAGE}: install Info links for ${FLAVOR}
- install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/share/info/${PACKAGE}.info.gz
-fi
-
install -m 755 -d ${ELCDIR}
cd ${ELDIR}
FILES=`echo *.el`
-cp ${FILES} ${ELCDIR}
cd ${ELCDIR}
+ln -sf ${ELDIR}/${FILES} ${ELCDIR}
cat << EOF > path.el
(setq load-path (cons "." load-path) byte-compile-warnings nil)
EOF
${FLAVOR} ${FLAGS} ${FILES}
-rm -f *.el path.el
+rm -f path.el
exit 0