[piping the solution back to the list...] On Tuesday, September 24, 2002, at 02:03 PM, Chris Angelli wrote:
> % cd /Library/Perl > % find . -name "*.bundle" -print > > Again, I don't want to waste your time, but I banged > my head against this one for a few days before it > worked, so I'm just trying to save your noggin. Ugh... Thanks. I just came up with a whole bazilian of them. [BTW, "-print" is implied. find works identically without it.] ....then it was just a matter of modifying your example "find" to pipe its output to rm as an argument, cd back to the source directory and re-issue "make install": % find . -name "*.bundle" | xargs sudo rm -f % cd ../../usr/local/src % sudo make install then test it: % perl -MCPAN -e shell cpan shell -- CPAN exploration and modules installation (v1.61) ReadLine support enabled cpan> My main problem with following the instructions in perldelta was that they were not detailed enough. Once I had a better idea where to find the .bundle files, the rest came easily. --B