mirror of
https://github.com/curl/curl.git
synced 2026-07-15 23:57:20 +03:00
cmake: fixup DEPENDS filename
Fixing:
```
make[2]: Circular docs/curl-config.1 <- docs/curl-config.1 dependency dropped.
make[2]: Circular docs/mk-ca-bundle.1 <- docs/mk-ca-bundle.1 dependency dropped.
```
Ref: https://github.com/curl/curl/actions/runs/8559617487/job/23456740844?pr=13282#step:6:18
Follow-up to 5023ffad2c #13197
Closes #13283
This commit is contained in:
parent
b6f2e33118
commit
2cac6a49b3
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ if(BUILD_MISC_DOCS)
|
|||
add_custom_command(OUTPUT "${_man_target}"
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
COMMAND "${PERL_EXECUTABLE}" ${PROJECT_SOURCE_DIR}/scripts/cd2nroff "${_man_misc}.md" > "${_man_target}"
|
||||
DEPENDS ${_man_target}
|
||||
DEPENDS "${_man_misc}.md"
|
||||
VERBATIM
|
||||
)
|
||||
add_custom_target("generate-${_man_misc}.1" ALL DEPENDS "${_man_target}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue