diff options
author | ru <ru@FreeBSD.org> | 2004-10-24 15:33:08 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-10-24 15:33:08 +0000 |
commit | 5db2b9d5b3371f0f9ee8b69caba9e7c1e641877f (patch) | |
tree | 2a28a087684353f3fc60fa304d31bd2590e83ab7 /lib/libc | |
parent | de65dd674240a6b2dc4e8d5f93291feb7cad100f (diff) | |
download | FreeBSD-src-5db2b9d5b3371f0f9ee8b69caba9e7c1e641877f.zip FreeBSD-src-5db2b9d5b3371f0f9ee8b69caba9e7c1e641877f.tar.gz |
For variables that are only checked with defined(), don't provide
any fake value.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 4 | ||||
-rw-r--r-- | lib/libc/alpha/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/amd64/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/ia64/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/sparc64/Makefile.inc | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index a8196bb..95356b9 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -16,8 +16,8 @@ WARNS?= 2 CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include CFLAGS+=-I${.CURDIR}/${MACHINE_ARCH} CLEANFILES+=tags -INSTALL_PIC_ARCHIVE= yes -PRECIOUSLIB= yes +INSTALL_PIC_ARCHIVE= +PRECIOUSLIB= # Define (empty) variables so that make doesn't give substitution # errors if the included makefiles don't change these: diff --git a/lib/libc/alpha/Makefile.inc b/lib/libc/alpha/Makefile.inc index 5a4d48e..eff6caf 100644 --- a/lib/libc/alpha/Makefile.inc +++ b/lib/libc/alpha/Makefile.inc @@ -6,4 +6,4 @@ # # Alpha is 64-bit, so it doesn't need quad functions: # -NO_QUAD=1 +NO_QUAD= diff --git a/lib/libc/amd64/Makefile.inc b/lib/libc/amd64/Makefile.inc index fb08795..0f14caf 100644 --- a/lib/libc/amd64/Makefile.inc +++ b/lib/libc/amd64/Makefile.inc @@ -6,4 +6,4 @@ # # AMD64 is 64-bit, so it doesn't need quad functions: # -NO_QUAD=1 +NO_QUAD= diff --git a/lib/libc/ia64/Makefile.inc b/lib/libc/ia64/Makefile.inc index 58afd5d..5c60862 100644 --- a/lib/libc/ia64/Makefile.inc +++ b/lib/libc/ia64/Makefile.inc @@ -6,4 +6,4 @@ # # IA-64 is 64-bit, so it doesn't need quad functions: # -NO_QUAD=1 +NO_QUAD= diff --git a/lib/libc/sparc64/Makefile.inc b/lib/libc/sparc64/Makefile.inc index ebac893..afacb91 100644 --- a/lib/libc/sparc64/Makefile.inc +++ b/lib/libc/sparc64/Makefile.inc @@ -8,4 +8,4 @@ # # sparc64 is 64-bit, so it doesn't need quad functions. # -NO_QUAD=1 +NO_QUAD= |