mirror of
https://github.com/correl/melpa.git
synced 2024-11-24 11:09:51 +00:00
force build info files and ignore errors
some files will not build but we try to generate the info anyways, despite errors.
This commit is contained in:
parent
b7bb3be63b
commit
c59e177fba
1 changed files with 22 additions and 17 deletions
|
@ -678,28 +678,33 @@ file path and DEST is the relative path to which it should be copied."
|
|||
(defun pb/generate-info-files (files source-dir target-dir)
|
||||
"Create .info files from any .texi files listed in FILES in SOURCE-DIR in TARGET-DIR."
|
||||
(cl-loop for (source-file . dest-file) in files
|
||||
if (string-match ".texi$" source-file)
|
||||
do (pb/run-process
|
||||
for target-file = (concat (file-name-sans-extension dest-file)
|
||||
".info")
|
||||
if (and (string-match ".texi\\(nfo\\)?$" source-file)
|
||||
(not (file-exists-p target-file)))
|
||||
do (ignore-errors
|
||||
(pb/run-process
|
||||
nil
|
||||
"makeinfo"
|
||||
(expand-file-name source-file source-dir)
|
||||
"--force"
|
||||
"-o"
|
||||
(expand-file-name (concat (file-name-sans-extension dest-file)
|
||||
".info")
|
||||
target-dir))))
|
||||
(expand-file-name target-file
|
||||
target-dir)))))
|
||||
|
||||
(defun pb/generate-dir-file (files target-dir)
|
||||
"Create dir file from any .info files listed in FILES in TARGET-DIR."
|
||||
(cl-loop for (source-file . dest-file) in files
|
||||
if (or (string-match ".info$" source-file)
|
||||
(string-match ".texi$" source-file))
|
||||
do (pb/run-process
|
||||
(string-match ".texi\\(nfo\\)?$" source-file))
|
||||
do (ignore-errors
|
||||
(pb/run-process
|
||||
nil
|
||||
"install-info"
|
||||
(concat "--dir=" (expand-file-name "dir" target-dir))
|
||||
(expand-file-name (concat (file-name-sans-extension dest-file)
|
||||
".info")
|
||||
target-dir))))
|
||||
target-dir)))))
|
||||
|
||||
(defun pb/copy-package-files (files source-dir target-dir)
|
||||
"Copy FILES from SOURCE-DIR to TARGET-DIR.
|
||||
|
|
Loading…
Reference in a new issue