NOSHARE -> NO_SHARE

This commit is contained in:
Ruslan Ermilov 2004-12-21 12:13:23 +00:00
parent 582ef25f94
commit 6495335e69
5 changed files with 7 additions and 6 deletions

View File

@ -11,7 +11,7 @@
# -DNO_MAN do not build the manual pages # -DNO_MAN do not build the manual pages
# -DNO_PROFILE do not build profiled libraries # -DNO_PROFILE do not build profiled libraries
# -DNO_GAMES do not go into games subdir # -DNO_GAMES do not go into games subdir
# -DNOSHARE do not go into share subdir # -DNO_SHARE do not go into share subdir
# -DNO_INFO do not make or install info files # -DNO_INFO do not make or install info files
# -DNO_LIBC_R do not build libc_r. # -DNO_LIBC_R do not build libc_r.
# -DNO_FORTRAN do not build g77 and related libraries. # -DNO_FORTRAN do not build g77 and related libraries.
@ -59,7 +59,7 @@ SUBDIR+=sbin
.if !defined(NO_CRYPT) .if !defined(NO_CRYPT)
SUBDIR+=secure SUBDIR+=secure
.endif .endif
.if !defined(NOSHARE) .if !defined(NO_SHARE)
SUBDIR+=share SUBDIR+=share
.endif .endif
SUBDIR+=sys usr.bin usr.sbin etc SUBDIR+=sys usr.bin usr.sbin etc
@ -876,7 +876,7 @@ bootstrap-tools:
_aicasm= sys/modules/aic7xxx/aicasm _aicasm= sys/modules/aic7xxx/aicasm
.endif .endif
.if !defined(NOSHARE) .if !defined(NO_SHARE)
_share= share/syscons/scrnmaps _share= share/syscons/scrnmaps
.endif .endif

View File

@ -182,7 +182,7 @@ create_includes_and_libraries() {
BINOWN=`id -un` BINGRP=`id -gn` \ BINOWN=`id -un` BINGRP=`id -gn` \
DESTDIR=${l_usrtree}/.. \ DESTDIR=${l_usrtree}/.. \
make -m ${SRC}/share/mk \ make -m ${SRC}/share/mk \
-DNO_HTML -DNO_INFO -DNO_MAN -DNOSHARE -DNO_FSCHG " -DNO_HTML -DNO_INFO -DNO_MAN -DNO_SHARE -DNO_FSCHG "
log "do a 'make obj' in a few places." log "do a 'make obj' in a few places."
# This is very version-specific... The following works for 5.0 # This is very version-specific... The following works for 5.0
for i in lib secure/lib gnu/lib usr.sbin/pcvt/keycap \ for i in lib secure/lib gnu/lib usr.sbin/pcvt/keycap \

View File

@ -137,7 +137,7 @@
#NO_PF= # do not build PF firewall package #NO_PF= # do not build PF firewall package
#NO_PROFILE= # Avoid compiling profiled libraries #NO_PROFILE= # Avoid compiling profiled libraries
#NO_SENDMAIL= # do not build sendmail and related programs #NO_SENDMAIL= # do not build sendmail and related programs
#NOSHARE= # do not go into the share subdir #NO_SHARE= # do not go into the share subdir
#NO_SHARED= # build /bin and /sbin dynamically linked (bad idea #NO_SHARED= # build /bin and /sbin dynamically linked (bad idea
#NO_SHAREDOCS= # do not build the 4.4BSD legacy docs #NO_SHAREDOCS= # do not build the 4.4BSD legacy docs
#NO_TCSH= # do not build and install /bin/csh (which is tcsh) #NO_TCSH= # do not build and install /bin/csh (which is tcsh)

View File

@ -565,7 +565,7 @@ Set to install man pages uncompressed.
.It Va NO_PROFILE .It Va NO_PROFILE
.Pq Vt bool .Pq Vt bool
Set to avoid compiling profiled libraries. Set to avoid compiling profiled libraries.
.It Va NOSHARE .It Va NO_SHARE
.Pq Vt bool .Pq Vt bool
Set to not build in the Set to not build in the
.Pa share .Pa share

View File

@ -23,6 +23,7 @@
NOOBJ:NO_OBJ \ NOOBJ:NO_OBJ \
NOPIC:NO_PIC \ NOPIC:NO_PIC \
NOPROFILE:NO_PROFILE \ NOPROFILE:NO_PROFILE \
NOSHARE:NO_SHARE \
NOSHARED:NO_SHARED \ NOSHARED:NO_SHARED \
NOTAGS:NO_TAGS NOTAGS:NO_TAGS
.for old in ${oldnew:C/:.*//} .for old in ${oldnew:C/:.*//}