Skip to content

Commit

Permalink
Remove dependancy with PERL ENV variable.
Browse files Browse the repository at this point in the history
Set the perl search directory to include the openssl src
dir so it can find configdata.pm without making the user
set an environment variable.

Signed-off-by: Yogaraj Alamenda <yogarajx.alamenda@intel.com>
  • Loading branch information
jmechalas authored and Yogaraj-Alamenda committed May 31, 2021
1 parent 378bfeb commit 105fdaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ endif

err-files:
if QAT_OPENSSL_110
rm -rf e_qat_err* && perl $(with_openssl_dir)/util/mkerr.pl -conf e_qat.ec \
rm -rf e_qat_err* && perl -I$(with_openssl_dir) $(with_openssl_dir)/util/mkerr.pl -conf e_qat.ec \
-rebuild -reindex -nostatic -write *.c

else
rm -f e_qat_err.c e_qat.txt && perl $(with_openssl_dir)/util/mkerr.pl -conf e_qat.ec \
rm -f e_qat_err.c e_qat.txt && perl -I$(with_openssl_dir) $(with_openssl_dir)/util/mkerr.pl -conf e_qat.ec \
-rebuild -reindex *.c
endif

0 comments on commit 105fdaa

Please sign in to comment.