Fix for 2createpackages in woofQ
WoofQ is the build system for EasyOS. It has scripts '0setup',
'1download', '2createpackages' and '3buildeasydistro', that are run in
that order. The script '2createpackages' splits each input package into
_EXE, _DEV, _DOC and _NLS components.
Recently, when compiling LibreOffice in EasyOS on the Pi4, the
configure step reported that the system boost libraries cannot be used,
as some header files were missing. So, I had to use the internal boost,
which does make the final LibreOffice PET bigger than it could have
been.
Today, found the culprit. '2createpackages' places files with path
"*/locale/*", with some conditions, into _NLS. However, boost has
header files in usr/include/boost/locale, and '2createpackages' was
placing these into _NLS, whereas they should go into _EXE. Fixed.
Tags: easy