After happening upon the problem in libfreehand (for libreoffice)
where one line in the file had a U16_NEXT( ... )
without a terminating semicolon I've hit the same thing in the
chromium part of qtwebengine-5.13.2.

The initial error messages point to the _next_ line, in this case
./../../../../src/3rdparty/chromium/third_party/blink/renderer/core/dom/document.cc:5714:5:
 error: expected ';' before 'if'
 5714 |     if (c == ':') {
      |     ^~

and line 5713 again uses U16_NEXT.  Fortunately, this time we have
the source when we start to build.  Normally I dislike seds which
address a line number by it's number, but in this case I think it's
appropriate:

sed -i '5713s/.*/&;/' \
  src/3rdparty/chromium/third_party/blink/renderer/core/dom/document.cc

Will address it in a mo.

ĸen
-- 
Whilst all mushrooms are edible, the trick is to eat only those which
will prove to be edible more than once. The Celebrated Discworld Almanak
recommends you play safe and eat beans on toast.
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to