diff options
author | Carl Worth <cworth@cworth.org> | 2010-04-06 16:44:33 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-04-06 18:30:43 -0700 |
commit | ffd274e13584f37faed56582fec9a23e726972af (patch) | |
tree | 55a56de04dcb6c4773d36c8b402f31c0fdfa0309 /debian | |
parent | ba8ee48dcb7dc972996a258401425855cafe4f71 (diff) |
debian: Don't try compiling emacs bytecode for emacs < 21
It just doesn't work.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/notmuch.emacsen-install | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/debian/notmuch.emacsen-install b/debian/notmuch.emacsen-install index 4982691e..98ec1282 100755 --- a/debian/notmuch.emacsen-install +++ b/debian/notmuch.emacsen-install @@ -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` |