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
Result of make doc is confusing
#14705
Comments
|
Adding a line to the Makefile that says |
|
I think that should be fine. Let's see! Thank you! |
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this issue
Sep 2, 2015
Because 'doc' is a directory, when running `make doc`, you'll see
this:
make: Nothing to be done for `doc'.
By adding a target for `doc` to build `docs`, both work.
Fixes rust-lang#14705
steveklabnik
added a commit
to steveklabnik/rust
that referenced
this issue
Sep 3, 2015
Because 'doc' is a directory, when running `make doc`, you'll see
this:
make: Nothing to be done for `doc'.
By adding a target for `doc` to build `docs`, both work.
Fixes rust-lang#14705
bors
added a commit
that referenced
this issue
Sep 3, 2015
Because 'doc' is a directory, when running `make doc`, you'll see
this:
make: Nothing to be done for `doc'.
By adding a target for `doc` to build `docs`, both work.
Fixes #14705
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's because
docrefers just to the directory of that name. ThePHONYdocs target is nameddocs.I don't know what exactly to do about this, but it's confusing.
The text was updated successfully, but these errors were encountered: