GNOME Bugzilla – Bug 646780
Build failure because of test-endianess
Last modified: 2011-04-05 08:42:41 UTC
For some reason, this never got filed while I have always seeing this: ./test-endianess make[4]: *** [check-local] Error 1 The reason is simply that the test does this: dir = g_dir_open ("/usr/share/i18n/locales/", 0, NULL); This directory does not exist in my system, so the test simply fails. Just using "/usr/share/locales/" instead works. Also, it sounds wrong to me to do the check-local target by default: it should only happen on "make check", imho.
(In reply to comment #0) > Just using "/usr/share/locales/" instead works. I meant "/usr/share/locale/"
Fixed in master. (In reply to comment #0) > Also, it sounds wrong to me to do the check-local target by default: it should > only happen on "make check", imho. And I would prefer it stayed that way, so that errors are actually caught as early as possible. Haven't had any complaints about that code before you, which means that I did something right :)