You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The paths from which GPRinstall is supposed to copy the documentation seems incorrect. Looks like a missing indirection.
--- a/lib/gnat/aunit.gpr+++ b/lib/gnat/aunit.gpr@@ -50,13 +50,13 @@
package Install is
for Artifacts ("share/doc/aunit/pdf")
- use ("../../doc/pdf/**");+ use ("../../doc/build/aunit_cb/pdf/**");
for Artifacts ("share/doc/aunit/txt")
- use ("../../doc/txt/**");+ use ("../../doc/build/aunit_cb/txt/**");
for Artifacts ("share/doc/aunit/info")
- use ("../../doc/info/**");+ use ("../../doc/build/aunit_cb/info/**");
for Artifacts ("share/doc/aunit/html")
- use ("../../doc/html/**");+ use ("../../doc/build/aunit_cb/html/**");
for Artifacts ("share/gps/plug-ins") use ("../../support/aunit.xml");
for Artifacts ("share/examples/aunit") use ("../../examples/*");
The text was updated successfully, but these errors were encountered:
dvraaij
changed the title
Paths form which GPRinstall is supposed to copy the documentation seems incorrect.
Paths from which GPRinstall is supposed to copy the documentation seems incorrect.
Mar 14, 2023
It's not exactly incorrect, but rather reflects the way things are built in our own production system, which is indeed different from what one would get if one just did make doc. The discrepancy seems unnecessary, we'll fix it.
The paths from which GPRinstall is supposed to copy the documentation seems incorrect. Looks like a missing indirection.
The text was updated successfully, but these errors were encountered: