source:
trunk/essentials/dev-lang/perl/Cross/warp
| Last change on this file was 3181, checked in by , 19 years ago | |
|---|---|
| File size: 377 bytes | |
| Line | |
|---|---|
| 1 | #!/bin/sh -x |
| 2 | |
| 3 | ## This script contains an rm -rf. This may alarm you. |
| 4 | ## These directories need to be reccursively deleted. |
| 5 | ## I don't see any method of making "Bad Things"[tm] |
| 6 | ## Happen. But we don't run buildroot as root do we? :-) |
| 7 | |
| 8 | for f in `find lib -name install_me_here`;do |
| 9 | cp -r $f/* ./install_me_here/ |
| 10 | done |
| 11 | |
| 12 | for f in `find lib -name install_me_here`;do |
| 13 | rm -rf $f |
| 14 | done |
Note:
See TracBrowser
for help on using the repository browser.
