packages: 'find-packages-by-name' properly honors version prefixes.
Fixes <https://bugs.gnu.org/28446>. Reported by Mark H Weaver <mhw@netris.org>. * gnu/packages.scm (find-packages-by-name): Use 'version-prefix?' instead of 'string-prefix?'.
This commit is contained in:
parent
437f62f02a
commit
348987d3d1
|
@ -188,7 +188,7 @@ decreasing version order."
|
||||||
version>?)))
|
version>?)))
|
||||||
(if version
|
(if version
|
||||||
(filter (lambda (package)
|
(filter (lambda (package)
|
||||||
(string-prefix? version (package-version package)))
|
(version-prefix? version (package-version package)))
|
||||||
matching)
|
matching)
|
||||||
matching)))))
|
matching)))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue