-
Notifications
You must be signed in to change notification settings - Fork 19
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
Makefile: don't reference deleted INSTALL file in apidoc target #117
Makefile: don't reference deleted INSTALL file in apidoc target #117
Conversation
Fixes build error if all targets are made.
Thanks for the PR. However I don't see any build error related to the INSTALL file. How can I reproduce it? |
I have stumbled upon this by using a regular packaging tool (in this case, Gentoo's Portage). Packaging tools in general avoid calling I checked which commands Portage calls in this case, and it burns down to:
It seems |
Note that another option would be to add:
to |
I'm reluctant to change the build options. I don't want to risk that what comes out doesn't satisfy policies for other platforms. Would it be ok with you if I commit the INSTALL file, as it was already the case some time ago? |
I think it's actually better to have an INSTALL file committed, even if it's the default. |
Sure, that would of course also be fine (note the alternative would be to drop the reference to the file as done in this PR, i.e. not install the file). In general, since the |
The problem is the --foreign option to the call to automake in your build script. This overrides the default which is --gnu. |
The option |
Installing the INSTALL file doesn't really make sense anyway. So accepting this PR would make sense anyway I think. |
Fixes build error if all targets are made.