mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
debian: Don't try compiling emacs bytecode for emacs < 21
It just doesn't work.
This commit is contained in:
parent
ba8ee48dcb
commit
ffd274e135
1 changed files with 6 additions and 0 deletions
6
debian/notmuch.emacsen-install
vendored
6
debian/notmuch.emacsen-install
vendored
|
@ -10,6 +10,12 @@ PACKAGE=notmuch
|
|||
|
||||
if [ ${FLAVOR} = emacs ]; then exit 0; fi
|
||||
|
||||
# We know that the notmuch emacs code doesn't work with emacs before emacs23
|
||||
if [ ${FLAVOR} = emacs21 ]; then exit 0; fi
|
||||
if [ ${FLAVOR} = emacs22 ]; then exit 0; fi
|
||||
if [ ${FLAVOR} = xemacs21 ]; then exit 0; fi
|
||||
if [ ${FLAVOR} = xemacs22 ]; then exit 0; fi
|
||||
|
||||
echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}
|
||||
|
||||
#FLAVORTEST=`echo $FLAVOR | cut -c-6`
|
||||
|
|
Loading…
Reference in a new issue