mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Don't build sperl if you don't want to.
This commit is contained in:
parent
9b5728dbde
commit
0fcadac763
4 changed files with 14 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: make.conf,v 1.57 1998/03/18 07:58:49 jkh Exp $
|
||||
# $Id: make.conf,v 1.58 1998/03/18 08:00:25 jkh Exp $
|
||||
#
|
||||
# This file, if present, will be read by make (see /usr/share/mk/sys.mk).
|
||||
# It allows you to override macro definitions to make without changing
|
||||
|
|
@ -20,6 +20,8 @@
|
|||
#
|
||||
# To avoid building the default system perl
|
||||
#NOPERL= true
|
||||
# To avoid building the suid perl
|
||||
#NOSUIDPERL= true
|
||||
#
|
||||
# To have 'obj' symlinks created in your source directory
|
||||
# (they aren't needed/necessary)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: make.conf,v 1.57 1998/03/18 07:58:49 jkh Exp $
|
||||
# $Id: make.conf,v 1.58 1998/03/18 08:00:25 jkh Exp $
|
||||
#
|
||||
# This file, if present, will be read by make (see /usr/share/mk/sys.mk).
|
||||
# It allows you to override macro definitions to make without changing
|
||||
|
|
@ -20,6 +20,8 @@
|
|||
#
|
||||
# To avoid building the default system perl
|
||||
#NOPERL= true
|
||||
# To avoid building the suid perl
|
||||
#NOSUIDPERL= true
|
||||
#
|
||||
# To have 'obj' symlinks created in your source directory
|
||||
# (they aren't needed/necessary)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,11 @@
|
|||
# Note: I'm not sure what to do with c2ph located in misc...
|
||||
#
|
||||
|
||||
SUBDIR= perl tperl sperl usub lib x2p
|
||||
SUBDIR= perl tperl usub lib x2p
|
||||
|
||||
.if !defined(NOSUIDPERL) && exists(${.CURDIR}/sperl)
|
||||
SUBDIR+=sperl
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: make.conf,v 1.57 1998/03/18 07:58:49 jkh Exp $
|
||||
# $Id: make.conf,v 1.58 1998/03/18 08:00:25 jkh Exp $
|
||||
#
|
||||
# This file, if present, will be read by make (see /usr/share/mk/sys.mk).
|
||||
# It allows you to override macro definitions to make without changing
|
||||
|
|
@ -20,6 +20,8 @@
|
|||
#
|
||||
# To avoid building the default system perl
|
||||
#NOPERL= true
|
||||
# To avoid building the suid perl
|
||||
#NOSUIDPERL= true
|
||||
#
|
||||
# To have 'obj' symlinks created in your source directory
|
||||
# (they aren't needed/necessary)
|
||||
|
|
|
|||
Loading…
Reference in a new issue