On 15/04/2017 02:47, Roger Koehler wrote:
On Fri, Apr 14, 2017 at 5:42 PM, Roger Koehler
<[email protected]> wrote:
On Fri, Apr 14, 2017 at 3:47 PM, Roger Koehler
<[email protected]> wrote:
For some reason the /mnt/build_dir/jhalfs makefile is not getting generated.
I have this message at the end of
/mnt/build_dir/jhalfs/logs/000-masterscript.log:

warning: failed to load external entity "nameserver1"
cannot parse nameserver1
I'ts because I left "domain" blank. Making it "home.local" appears to work.
I'll make a ticket. The "xsltproc" command uses something like
----------
--stringparam param1 $PARAM1 \
--stringparam param2 $PARAM2
----------
to pass parameters to the xsl "program", so that is the variable
PARAM1 is empty, param1 contains "--stringparam", and param2
is taken as one of the files to be read by xsltproc. I guess it should
be verified that the bash variables are not empty, but in case
one is empty anyway, the command above should be
-------------
--stringparam param1 "$PARAM1"  \
--stringparam param2 "$PARAM2"
-------------

That would avoid the "de-synchronization" leading to trying to read
a file named "param2".

Pierre
Pierre
--
http://lists.linuxfromscratch.org/listinfo/alfs-discuss
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to