root/branches/vendor/third/perl/Cross/warp @ 20074

Revision 20074, 377 bytes (checked in by zacheiss, 6 years ago)

Import perl 5.8.3.

  • Property svn:executable set to *
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
8for f in `find lib -name install_me_here`;do
9cp -r $f/* ./install_me_here/
10done
11
12for f in `find lib -name install_me_here`;do
13rm -rf $f
14done
Note: See TracBrowser for help on using the browser.