First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 126304
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Embedded Gentoo Team <embedded@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Axel Burri <gentoo@purrly.ch>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 126304 depends on: Show dependency tree
Bug 126304 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2006-03-15 07:01 0000
when setting USE=make-symlinks, the ebuild does only make symlinks for /bin and
/sbin but not for /usr/bin and /usr/sbin.

<patch>

--- busybox-1.1.0.ebuild.orig   2006-03-11 01:41:44.000000000 +0100
+++ busybox-1.1.0.ebuild        2006-03-15 15:57:59.758949456 +0100
@@ -173,13 +173,15 @@
                        die "silly options will destroy your system"
                fi
                make CROSS="${CROSS}" install || die
-               dodir /bin
-               cp -pPR _install/bin/* "${D}"/bin/
-               dodir /sbin
-               cp -pPR _install/sbin/* "${D}"/sbin/
+               local bindir
+               for bindir in bin sbin usr/bin usr/sbin ; do
+                       dodir $bindir
+                       cp -pPR _install/$bindir/* "${D}"/$bindir/
+               done
+               [[ -L _install/linuxrc ]] && cp -pP _install/linuxrc "${D}"/
                cd "${D}"
                local symlink
-               for symlink in {bin,sbin}/* ; do
+               for symlink in {bin,sbin,usr/bin,usr/sbin}/* linuxrc ; do
                        [[ -L ${symlink} ]] || continue
                        [[ -e ${ROOT}/${symlink} ]] \
                                && eerror "Deleting symlink ${symlink} because
it exists in ${ROOT}" \

------- Comment #1 From SpanKY 2006-03-27 18:47:15 0000 -------
should be fixed now in 1.1.0 and 1.1.1

First Last Prev Next    No search results available      Search page      Enter new bug