Opened 21 months ago
Closed 21 months ago
#378 closed System Enhancement (fixed)
No cases for other versions of FreeBSD, than CURRENT and RELEASE in function pbi-manager:mk_chroot_file().
| Reported by: | Nukama | Owned by: | |
|---|---|---|---|
| Priority: | trivial | Milestone: | |
| Component: | PBI System | Version: | 9.0-BETA1 |
| Keywords: | pbi-manager | Cc: | trac-bugs@… |
Description
This affects users of .0-{BETA,RC}, -STABLE and rarely used versions of FreeBSD.
The mk_chroot_file creation process cannot be handled by the current implementation of pbi-manager on these systems.
Solution 1:
Build from sources after manually fetching them.
# cd /usr/src
# make buildworld installworld distribution DESTDIR=${PBI_BUILDTARGET}
# mkdir -p ${PBI_BUILDTARGET}/usr/src
# tar cvf - -C "/usr/src" --exclude "\.svn/" . 2>/dev/null | tar xvf - -C "${PBI_BUILDTARGET}/usr/src" 2>/dev/null
# tar cvjf ${PBI_APPDIR}/.pbi-world.tbz -C ${PBI_BUILDTARGET} .
Solution 2:
Test attached patch, and hope for a good outcome.
Attachments (1)
Change History (2)
Changed 21 months ago by Nukama
comment:1 Changed 21 months ago by kris
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Committed the patch, thanks!