Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: make upload target dependency on rsync optional #76

Merged
merged 1 commit into from
Nov 30, 2021
Merged

doc: make upload target dependency on rsync optional #76

merged 1 commit into from
Nov 30, 2021

Commits on Nov 30, 2021

  1. doc: make upload target dependency on rsync optional

    Currently, rsync is an unconditional dependency and checked during
    `meson configure`. As such, the build will fail if rsync is not
    installed which is probably not what was intended here.
    
    From the meson documentation:
    
    	Meson will automatically insert the appropriate dependencies on
    	targets and files listed in this keyword [the command] argument.
    
    This commit fixes the unconditional dependency on rsync with an explicit
    find_program invocation with `required: false`. Also wrap the
    custom_target in an if statement since it is not allowed to use
    non-found external programs in `command`.
    nmeum committed Nov 30, 2021
    Configuration menu
    Copy the full SHA
    b656ca4 View commit details
    Browse the repository at this point in the history