Bug #157
installer trouble
| Status: | Closed | Start date: | ||
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - |
Description
I just built installer_release for 1.4.4 and am having trouble once I
login as installer. The error seems similar to
http://leaf.dragonflybsd.org/mailarchive/bugs/2005-03/msg00167.html
but the error message complains about libintl.so.2 not found. Did I
build something incorrectly?
---chuck
Related todos
History
Updated by dillon about 7 years ago
:
:I just built installer_release for 1.4.4 and am having trouble once I
:login as installer. The error seems similar to
:
:http://leaf.dragonflybsd.org/mailarchive/bugs/2005-03/msg00167.html
:
:but the error message complains about libintl.so.2 not found. Did I
:build something incorrectly?
:
:---chuck
Hmm. Maybe you built it with stale installer packages. Try fetching
a fresh set of installer packages and rebuilding.
rm -rf /usr/release/packages
make installer_fetch
If that turns out to be the trouble, we need to fix the Makefile to
detect the issue (maybe by storing a 'release' number in
/usr/release/packages/ and cleaning them out if it doesn't match).
-Matt
Matthew Dillon
<dillon@backplane.com>
Updated by ctuffli about 7 years ago
On 4/30/06, Matthew Dillon <dillon@apollo.backplane.com> wrote:
...
> Hmm. Maybe you built it with stale installer packages. Try fetching
> a fresh set of installer packages and rebuilding.
>
> rm -rf /usr/release/packages
> make installer_fetch
So this looks like my goof. Cleaning out the packages directory fixed
the problem. That directory had 2 different packages for gettext
# ls -l gettext-lib-0.1*
-rw-r--r-- 1 root wheel 46755 Dec 21 21:45 gettext-lib-0.11.5nb6.tgz
-rw-r--r-- 1 root wheel 51262 Apr 14 12:17 gettext-lib-0.14.5.tgz
> If that turns out to be the trouble, we need to fix the Makefile to
> detect the issue (maybe by storing a 'release' number in
> /usr/release/packages/ and cleaning them out if it doesn't match).
I'll leave the remedy up to you. Thanks for the help!
---chuck