Closed
Conversation
Contributor
|
I just applied this patch to my fork and here's the error: |
Contributor
Author
|
@DerekNonGeneric Bummer, I don't have this error (I'm using GNU Make 3.81 built for i386-apple-darwin11.3.0, I suspect there are small differences with your version). |
aduh95
commented
Sep 4, 2020
Contributor
|
I'm still missing the |
Adds doc output directory as order-only prerequisite for build target.
292458c to
1e05cc6
Compare
DerekNonGeneric
approved these changes
Sep 4, 2020
Contributor
DerekNonGeneric
left a comment
There was a problem hiding this comment.
#35060 (comment) resolved by #34986 (comment), so everything seems to be working as expected now.
This will need to land before #34986 otherwise doc workflow will be broken on master branch.
richardlau
approved these changes
Sep 5, 2020
Contributor
|
Landed in 8ae2f47 |
richardlau
pushed a commit
that referenced
this pull request
Sep 7, 2020
Adds doc output directory as order-only prerequisite for build target. PR-URL: #35060 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
richardlau
pushed a commit
that referenced
this pull request
Sep 7, 2020
Adds doc output directory as order-only prerequisite for build target. PR-URL: #35060 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
addaleax
pushed a commit
that referenced
this pull request
Sep 22, 2020
Adds doc output directory as order-only prerequisite for build target. PR-URL: #35060 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
addaleax
pushed a commit
that referenced
this pull request
Sep 22, 2020
Adds doc output directory as order-only prerequisite for build target. PR-URL: #35060 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Merged
joesepi
pushed a commit
to joesepi/node
that referenced
this pull request
Jan 8, 2021
Adds doc output directory as order-only prerequisite for build target. PR-URL: nodejs#35060 Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds doc output directory as order-only prerequisite for build target.
Currently, here is the issue:
The problem is that the
out/doc/apidirectory is not created before trying to generate the files, which fails. This PR adds the directories as prerequisites to ensure the files can be generated.Repported by @DerekNonGeneric in #34986 (comment).
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes