Hi,
I have tried to emerge libgpg-error-1.0 and got the following error:-
Code:
LC_ALL undeclared...
I tracked the error down to the file gpg-error.c and was able to get the package to compile by changing
Code:
setlocale (LC_ALL, "" );
to
Code:
setlocale (LC_ALL, "");
The problem I have is that I want to emerge the altered package, but portage complains that the MD5 sums don't match. I have changed the file
/usr/portage/dev-libs/libgpg-error/files/digest-libgpg-error-1.0
to reflect the new MD5 sum and file size, but still portage complains. I feel there must be a cache somewhere that needs changing. Can anyone point me in the right direction?
Thanks.