From fc281c6159a48bbbc99dd652e3d4abe83a54ea0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 4 Jun 2002 15:20:11 +0000 Subject: [PATCH] Don't build perl if NO_PERL is defined. --- usr.bin/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/usr.bin/Makefile b/usr.bin/Makefile index d9d141e649b0..480e4327ca6f 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -122,7 +122,6 @@ SUBDIR= apply \ passwd \ paste \ pathchk \ - perl \ pr \ printenv \ printf \ @@ -217,6 +216,10 @@ SUBDIR+=dig \ host .endif +.if !defined(NO_PERL) +SUBDIR+=perl +.endif + .if !defined(NO_SENDMAIL) SUBDIR+=vacation .endif