diff options
author | ru <ru@FreeBSD.org> | 2004-12-21 09:59:45 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-12-21 09:59:45 +0000 |
commit | c1a820195c3f6961461d3e25ff7910f826995de9 (patch) | |
tree | 311c433391b6b9ae7319ac9bd77250512498c346 /sbin | |
parent | 0b2edb3a9bb579259edf15c7f1fd1513da2981d6 (diff) | |
download | FreeBSD-src-c1a820195c3f6961461d3e25ff7910f826995de9.zip FreeBSD-src-c1a820195c3f6961461d3e25ff7910f826995de9.tar.gz |
NOSHARED -> NO_SHARED
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/Makefile.inc | 2 | ||||
-rw-r--r-- | sbin/devd/Makefile | 2 | ||||
-rw-r--r-- | sbin/geom/core/Makefile | 2 | ||||
-rw-r--r-- | sbin/init/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_cd9660/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_msdosfs/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_ntfs/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_udf/Makefile | 2 | ||||
-rw-r--r-- | sbin/mount_ufs/Makefile | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/sbin/Makefile.inc b/sbin/Makefile.inc index 7a1ebd0..d1fed26 100644 --- a/sbin/Makefile.inc +++ b/sbin/Makefile.inc @@ -5,5 +5,5 @@ BINDIR?= /sbin WARNS?= 2 .if defined(NO_DYNAMICROOT) -NOSHARED?= YES +NO_SHARED?= YES .endif diff --git a/sbin/devd/Makefile b/sbin/devd/Makefile index 8e1122e..469e1e2 100644 --- a/sbin/devd/Makefile +++ b/sbin/devd/Makefile @@ -5,7 +5,7 @@ SRCS= devd.cc token.l parse.y y.tab.h MAN= devd.8 devd.conf.5 WARNS?= 1 -NOSHARED?=YES +NO_SHARED?=YES DPADD= ${LIBL} LDADD= -ll diff --git a/sbin/geom/core/Makefile b/sbin/geom/core/Makefile index 13c6a09..d76c35b 100644 --- a/sbin/geom/core/Makefile +++ b/sbin/geom/core/Makefile @@ -6,7 +6,7 @@ PROG= geom MAN= geom.8 SRCS= geom.c subr.c -NOSHARED=NO +NO_SHARED=NO CFLAGS+= -DCLASS_DIR=\"${CLASS_DIR}\" CFLAGS+= -I${.CURDIR}/../../../sys -I${.CURDIR} -I${.CURDIR}/.. diff --git a/sbin/init/Makefile b/sbin/init/Makefile index 61752e9..d3e9e96 100644 --- a/sbin/init/Makefile +++ b/sbin/init/Makefile @@ -12,6 +12,6 @@ WARNS?= 0 DPADD= ${LIBUTIL} ${LIBCRYPT} LDADD= -lutil -lcrypt -NOSHARED?= YES +NO_SHARED?= YES .include <bsd.prog.mk> diff --git a/sbin/mount_cd9660/Makefile b/sbin/mount_cd9660/Makefile index 80af58a..044985c 100644 --- a/sbin/mount_cd9660/Makefile +++ b/sbin/mount_cd9660/Makefile @@ -13,7 +13,7 @@ WARNS?= 0 # Needs to be dynamically linked for optional dlopen() access to # userland libiconv -NOSHARED?= NO +NO_SHARED?= NO .PATH: ${MOUNT} diff --git a/sbin/mount_msdosfs/Makefile b/sbin/mount_msdosfs/Makefile index 7fedb68..273ac01 100644 --- a/sbin/mount_msdosfs/Makefile +++ b/sbin/mount_msdosfs/Makefile @@ -14,7 +14,7 @@ WARNS?= 2 # Needs to be dynamically linked for optional dlopen() access to # userland libiconv -NOSHARED?= NO +NO_SHARED?= NO .PATH: ${MOUNT} diff --git a/sbin/mount_ntfs/Makefile b/sbin/mount_ntfs/Makefile index 8a3e75e0..5938b0d 100644 --- a/sbin/mount_ntfs/Makefile +++ b/sbin/mount_ntfs/Makefile @@ -14,7 +14,7 @@ WARNS?= 0 # Needs to be dynamically linked for optional dlopen() access to # userland libiconv -NOSHARED?= NO +NO_SHARED?= NO .PATH: ${MOUNT} diff --git a/sbin/mount_udf/Makefile b/sbin/mount_udf/Makefile index 3096c8e..e83328a 100644 --- a/sbin/mount_udf/Makefile +++ b/sbin/mount_udf/Makefile @@ -13,6 +13,6 @@ WARNS?= 1 # Needs to be dynamically linked for optional dlopen() access to # userland libiconv -NOSHARED?= NO +NO_SHARED?= NO .include <bsd.prog.mk> diff --git a/sbin/mount_ufs/Makefile b/sbin/mount_ufs/Makefile index 2c35d20..f7d331d 100644 --- a/sbin/mount_ufs/Makefile +++ b/sbin/mount_ufs/Makefile @@ -11,6 +11,6 @@ WARNS?= 1 # Needs to be dynamically linked for optional dlopen() access to # userland libiconv -NOSHARED?= NO +NO_SHARED?= NO .include <bsd.prog.mk> |