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

man-page: Fix logfile short option #1063

Merged
merged 2 commits into from
Aug 14, 2022
Merged

Commits on Aug 11, 2022

  1. man-page: Fix logfile short option

    man synopsis states [-n -logfile] option. Later on in avrdude.1 as well as in
    main.c -l is used.
    Also '-logfile' is no option alternative but a parameter.
    This is a minor issue but still confusing when one uses / to search
    through man pages.
    
    -- Always leave the code cleaner than you found it --
    
    Signed-off-by: brutzzl3r <s3b.gr0ss@gmail.com>
    sbngross committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    346de71 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2022

  1. man-page: Fix install dir

    `avrdude.1` is installed into `man` dir instead of its proper section
    location.
    This is due to the definition of `TYPE MAN` which points to
    `<DATAROOT>/man` according to cmake docs.
    
    Use `DESTINATION` and add proper section subdir.
    
    This allows for `man -M <YOUR INSTALL dir>/share/man -w 1 avrdude` to succeed
    instead of throwing `No manual entry for avrdude in section 1`
    
    Signed-off-by: brutzzl3r <s3b.gr0ss@gmail.com>
    sbngross committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    266eb23 View commit details
    Browse the repository at this point in the history