I've attached my output error and my script is below, also the link the the directions.

http://www.linuxfromscratch.org/lfs/view/stable/chapter05/perl.html

Here's my script:

( patch -Np1 -i ../../../perl-5.14.2-libc-1.patch 2>&2 | tee patch-perl.log && exit $PIPESTATUS ) &&
sh Configure -des -Dprefix=/tools            &&
cp -v perl cpan/podlators/pod2man /tools/bin &&
mkdir -pv /tools/lib/perl5/5.14.2            &&
cp -Rv lib/* /tools/lib/perl5/5.14.2         &&
date > ../FLAG                               &&
echo GOOD

Recommended Answers

All 2 Replies

You're never actually compiling the code. You need to call make to create perl and the other binaries you're trying to copy.

Thanks.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.