It appears the format of the Makefile.PL for the Crypt-SSLeay library
has changed since the perl-ssl.spec file was written.  This
substitution no longer works:

( cd Crypt-SSLeay-%{V_crypt_ssleay}
     %{l_shtool} subst \
         -e 's;^\(my @POSSIBLE_SSL_DIRS =
qw(\)[^)]*\().*\)$;\1%{l_prefix}\2;' \
         Makefile.PL
   ) || exit $?

I changed it to this and got the desired behavior:

   ( cd Crypt-SSLeay-%{V_crypt_ssleay}
     %{l_shtool} subst \
         -e 's;/usr$;%{l_prefix};' \
         Makefile.PL
   ) || exit $?

Clearly this is a bit of a brute force substitution, but I'm pressed
for time :-)

--
Caleb Epstein
______________________________________________________________________
OpenPKG                                             http://openpkg.org
User Communication List                      openpkg-users@openpkg.org

Reply via email to