[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [lmi] lmi + wine-3.0 (Debian 3.0-1) = purple fungus
From: |
Greg Chicares |
Subject: |
Re: [lmi] lmi + wine-3.0 (Debian 3.0-1) = purple fungus |
Date: |
Sat, 21 Jul 2018 15:54:09 +0000 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 |
On 2018-07-20 14:47, Greg Chicares wrote:
[...]
> This was a working copy created 2018-04-11 and untouched since then
> even though I upgraded wx just the other day; apparently it's a
> leftover artifact of some earlier version of 'install_wx.sh':
>
> /opt/lmi/src/lmi[0]$pushd /opt/lmi/vcs/wxWidgets
> /opt/lmi/vcs/wxWidgets[0]$git show 2a5aafb27419efb36999e24dbcc091eacea56286
> |head -1
> fatal: bad object 2a5aafb27419efb36999e24dbcc091eacea56286
>
> ..and it probably predates that SHA1. Therefore, I've now done this:
> rm -rf /opt/lmi/vcs/
> and the problem is presumably now fixed.
However, this exposes another problem (discovered promptly thanks to
'nychthemeral_test.sh'--don't know how I ever did without it)...
/opt/lmi/src/lmi[0]$./nychthemeral_test.sh 2>&1 | tee /tmp/lmi/logs/log | sed
-f errors.sed
Production system built--ready to start GUI test in another session.
fatal: file not found: /opt/lmi/vcs/wxWidgets/misc/schema/xrc_schema.rnc (No
such file or directory)
...which is easily fixed, thus...
-include "/opt/lmi/vcs/wxWidgets/misc/schema/xrc_schema.rnc"
+include "/cache_for_lmi/vcs/wxWidgets/misc/schema/xrc_schema.rnc"
...in commit e5d282b8. BTW, while modifying origin/master, I'm doing:
git format-patch $(git merge-base master
xanadu/pdf-pagination)..xanadu/pdf-pagination --stdout | git apply --check -
to make sure I don't commit anything that will cause merge problems
with the remote pdf-pagination branch. (Changing 'xrc.rnc' clearly
can't affect that, but I'm also making a couple of changes to
'wx_table_generator.?pp' that do call for this check.)