;; -*-emacs-lisp-*-
;;
;; Emacs startup file for Debian for the Debian evernote-mode package

(let ((package-dir (concat "/usr/share/"
                           (symbol-name flavor)
                           "/site-lisp/evernote-mode")))
  (when (file-directory-p package-dir)
    (if (fboundp 'debian-pkg-add-load-path-item)
        (debian-pkg-add-load-path-item package-dir)
      (setq load-path (cons package-dir load-path))
      )
    )
  )

