diff options
author | dougb <dougb@FreeBSD.org> | 2002-06-09 09:28:02 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2002-06-09 09:28:02 +0000 |
commit | e8ef99c274e012345cf63355b39d8dedef9b6428 (patch) | |
tree | ded24e6ae70fc25455e5d1a1b8157399c0923a1e | |
parent | 3f3974166bd2a4b9628023ef889e0c4f31aa10a7 (diff) | |
download | FreeBSD-src-e8ef99c274e012345cf63355b39d8dedef9b6428.zip FreeBSD-src-e8ef99c274e012345cf63355b39d8dedef9b6428.tar.gz |
Per previous discussion, and with Mark's blessing, update the value
of this knob to reflect (-)current reality.
-rw-r--r-- | share/examples/etc/make.conf | 1 | ||||
-rw-r--r-- | share/man/man5/make.conf.5 | 4 | ||||
-rw-r--r-- | usr.bin/Makefile | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 3052bea1..95f6299 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -103,6 +103,7 @@ #NO_OBJC= true # do not build Objective C support #NO_OPENSSH= true # do not build OpenSSH #NO_OPENSSL= true # do not build OpenSSL (implies NO_OPENSSH) +#NO_PERL_WRAPPER= true # do not build the wrapper in /usr/bin/perl #NO_SENDMAIL= true # do not build sendmail and related programs #NO_SHAREDOCS= true # do not build the 4.4BSD legacy docs #NO_TCSH= true # do not build and install /bin/csh (which is tcsh) diff --git a/share/man/man5/make.conf.5 b/share/man/man5/make.conf.5 index f7a510f..3af64dc 100644 --- a/share/man/man5/make.conf.5 +++ b/share/man/man5/make.conf.5 @@ -417,6 +417,10 @@ Set to not build OpenSSH. .Pq Vt bool Set to not build OpenSSL (implies .Va NO_OPENSSH ) . +.It Va NO_PERL_WRAPPER +.Pq Vt bool +Set to not build the perl wrapper which would otherwise +be installed as /usr/bin/perl. .It Va NO_SENDMAIL .Pq Vt bool Set to not build diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 5a2f121..9023e59 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -217,7 +217,7 @@ SUBDIR+=dig \ host .endif -.if !defined(NO_PERL) +.if !defined(NO_PERL_WRAPPER) SUBDIR+=perl .endif |