Skip to content

Commit

Permalink
package-build--extract-from-library: Fall back to generated webpage url
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Dec 30, 2024
1 parent f22dea8 commit f8510af
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -1236,10 +1236,12 @@ is the same as the value of `export_file_name'."
(package-read-from-string
(string-join require-lines " ")))))))
(oset rcp webpage
(if (fboundp 'lm-website)
(lm-website)
(with-no-warnings
(lm-homepage))))
(or (if (fboundp 'lm-website)
(lm-website)
(with-no-warnings
(lm-homepage)))
(and-let* ((format (oref rcp repopage-format)))
(format format (oref rcp repo)))))
(oset rcp keywords (lm-keywords-list))
(oset rcp maintainers
(if (fboundp 'lm-maintainers)
Expand Down

0 comments on commit f8510af

Please sign in to comment.