mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 08:38:23 +00:00
# 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>
15 lines
376 B
Bash
Executable File
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
|