| Anonymous | Login | Signup for a new account | 11-10-2008 11:20 PST |
| Main | My View | View Issues | Change Log | Docs |
| 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 | |||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |