Open
Conversation
My version of `makeinfo` (5.2) fails to build the documentation when the `@subsection` tag removed in this patch is present:
```
$ make info
restore=: && backupdir=".am$$" && \
rm -rf $backupdir && mkdir $backupdir && \
if (makeinfo --split-size=5000000 --version) >/dev/null 2>&1; then \
for f in cgen.info cgen.info-[0-9] cgen.info-[0-9][0-9] cgen.i[0-9] cgen.i[0-9][0-9]; do \
if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
else :; fi && \
if makeinfo --split-size=5000000 -I ../.././cgen/doc \
-o cgen.info `test -f 'cgen.texi' || echo '../.././cgen/doc/'`cgen.texi; \
then \
rc=0; \
else \
rc=$?; \
$restore $backupdir/* `echo "./cgen.info" | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
./running.texi:19: raising the section level of @subsection which is too low
make: *** [cgen.info] Error 1
$
```
|
carletes, Thanks for finding this. However it's an upstream bug, so would you consider submitting it to the official CGEN and we can pull it down from there. Jeremy |
Author
|
Sure! Where should I submit this, Jeremy? The |
|
Hi carletes, That's the one. If you let us know the outcome here, I'll make sure it gets pulled in. (I get the CGEN mailing list, but don't always have time to read it). |
carletes
added a commit
to carletes/epiphany-cgen-build
that referenced
this pull request
Oct 28, 2014
Upstream documentation cannot be built with a modern `makeinfo` (see adapteva/epiphany-cgen#2)
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.
My version of
makeinfo(5.2) fails to build the documentation when the@subsectiontag removed in this patch is present: