perl/Cross/warp
Peter J. Acklam) (via RT 8534470bdb Fix typos (spelling errors) in Cross/*.
# New Ticket Created by  (Peter J. Acklam)
# Please include the string:  [perl #81880]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81880 >

Signed-off-by: Abigail <abigail@abigail.be>
2011-01-07 13:02:48 +01:00

15 lines
376 B
Bash
Executable File

#!/bin/sh -x
## This script contains an rm -rf. This may alarm you.
## These directories need to be recursively deleted.
## I don't see any method of making "Bad Things"[tm]
## Happen. But we don't run buildroot as root do we? :-)
for f in `find lib -name install_me_here`;do
cp -r $f/* ./install_me_here/
done
for f in `find lib -name install_me_here`;do
rm -rf $f
done