diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index e0d1c99d369..ae2c2862887 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -923,10 +923,10 @@ not included in this list." (setq already pkg))) (cond (already - (if (version-list-< next-version (package-desc-version already)) + (if (version-list-<= next-version (package-desc-version already)) ;; Move to front, so it gets installed early enough (bug#14082). (setq packages (cons already (delq already packages))) - (error "Need package `%s-%s', but only %s is available" + (error "Need package `%s-%s', but only %s is being installed" next-pkg (package-version-join next-version) (package-version-join (package-desc-version already))))) |