From: Richard Levitte Date: Thu, 3 Jan 2002 14:08:02 +0000 (+0000) Subject: Use the variable $(PERL) to invoke perl. X-Git-Tag: OpenSSL_0_9_6d-beta1~88 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e8d2e6cac283b4edf1792aedd807c128f2c60b31;p=oweals%2Fopenssl.git Use the variable $(PERL) to invoke perl. Noted by Joe Orton --- diff --git a/crypto/objects/Makefile.ssl b/crypto/objects/Makefile.ssl index c4cbc50f37..7b1c51cdb1 100644 --- a/crypto/objects/Makefile.ssl +++ b/crypto/objects/Makefile.ssl @@ -14,6 +14,7 @@ MAKE= make -f Makefile.ssl MAKEDEPEND= $(TOP)/util/domd $(TOP) MAKEFILE= Makefile.ssl AR= ar r +PERL= perl CFLAGS= $(INCLUDES) $(CFLAG) @@ -44,11 +45,11 @@ lib: $(LIBOBJ) @touch lib obj_dat.h: obj_dat.pl obj_mac.h - perl obj_dat.pl obj_mac.h obj_dat.h + $(PERL) obj_dat.pl obj_mac.h obj_dat.h # objects.pl both reads and writes obj_mac.num obj_mac.h: objects.pl objects.txt obj_mac.num - perl objects.pl objects.txt obj_mac.num obj_mac.h + $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h files: $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO