Bug 150550 - app-editors/scite makefile uses install -o root -g root which fails where there is no root group.
|
Bug#:
150550
|
Product: Gentoo/Alt
|
Version: unspecified
|
Platform: All
|
|
OS/Version: FreeBSD
|
Status: RESOLVED
|
Severity: normal
|
Priority: P2
|
|
Resolution: FIXED
|
Assigned To: bsd@gentoo.org
|
Reported By: the_paya@gentoo.org
|
|
Component: FreeBSD
|
|
|
URL:
|
|
Summary: app-editors/scite makefile uses install -o root -g root which fails where there is no root group.
|
|
Keywords:
|
|
Status Whiteboard:
|
|
Opened: 2006-10-09 02:24 0000
|
The failure:
>>> Install scite-1.71 into /usr/local/tmp/portage/scite-1.71/image/ category app-editors
install -o root -g root -m 755 -d
/usr/local/tmp/portage/scite-1.71/image//usr/bin
/usr/local/tmp/portage/scite-1.71/image//usr/share/scite
install: root: Invalid argument
gmake: *** [install] Error 67
The fix for this can be to change -g root for -g wheel or just use -g 0.
Created an attachment (id=99180) [details]
scite-install.patch
Found this one afterwards, -D is not supported on freebsd install, this patch
just splits the command in two, first creating the directory and then copying
the file.
Fixed, thanks for the patches.