BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0001524 [BusyBox] Other block always 10-08-07 18:30 10-09-07 03:16
Reporter rockeychu View Status public  
Assigned To BusyBox
Priority normal Resolution fixed  
Status closed   Product Version svn
Summary 0001524: "scripts/trylink" stopped linking busybox
Description When not select CONFIG_BUILD_LIBBUSYBOX,"scripts/trylink" will return false to stopping linking busybox.

Patch as following alternatively:

Index: scripts/trylink
===================================================================
--- scripts/trylink (revision 20207)
+++ scripts/trylink (working copy)
@@ -190,4 +190,4 @@

 # libbusybox.so is needed only for -lbusybox at link time,
 # it is not needed at runtime. Deleting to reduce confusion.
-rm "$sharedlib_dir"/libbusybox.so >/dev/null
+rm -f "$sharedlib_dir"/libbusybox.so >/dev/null

or

Index: scripts/trylink
===================================================================
--- scripts/trylink (revision 20207)
+++ scripts/trylink (working copy)
@@ -190,4 +190,6 @@

 # libbusybox.so is needed only for -lbusybox at link time,
 # it is not needed at runtime. Deleting to reduce confusion.
-rm "$sharedlib_dir"/libbusybox.so >/dev/null
+if test "$CONFIG_BUILD_LIBBUSYBOX" = y; then
+ rm "$sharedlib_dir"/libbusybox.so >/dev/null
+fi
Additional Information
Attached Files

- Relationships

- Notes
(0002814)
vda
10-09-07 03:16

Fixed in svn, thanks!
 

- Issue History
Date Modified Username Field Change
10-08-07 18:30 rockeychu New Issue
10-08-07 18:30 rockeychu Status new => assigned
10-08-07 18:30 rockeychu Assigned To  => BusyBox
10-09-07 03:16 vda Status assigned => closed
10-09-07 03:16 vda Note Added: 0002814
10-09-07 03:16 vda Resolution open => fixed


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker