aboutsummaryrefslogtreecommitdiff
path: root/bin/ls
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2000-06-05 02:25:55 +0000
committerJosef Karthauser <joe@FreeBSD.org>2000-06-05 02:25:55 +0000
commit3ad254b3de1b1b218008cb3d693d76122ba3e8b7 (patch)
tree9b2b0344d3c0c8bfd32f3e514e462421ab2f426d /bin/ls
parent74985094ef1904f3bb16254005b0704f0c82d515 (diff)
downloadsrc-3ad254b3de1b1b218008cb3d693d76122ba3e8b7.tar.gz
src-3ad254b3de1b1b218008cb3d693d76122ba3e8b7.zip
Disable colour support in ls when building the fixit floppy, and make
a note of it in the release Makefile.
Notes
Notes: svn path=/head/; revision=61269
Diffstat (limited to 'bin/ls')
-rw-r--r--bin/ls/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ls/Makefile b/bin/ls/Makefile
index 1607a4c4ada5..c20c8feb59f4 100644
--- a/bin/ls/Makefile
+++ b/bin/ls/Makefile
@@ -6,7 +6,9 @@ PROG= ls
SRCS= cmp.c setflags.c ls.c print.c util.c
.PATH: ${.CURDIR}/../../lib/libc/gen
+.if !defined(RELEASE_BUILD_FIXIT)
CFLAGS+= -DCOLORLS
LDADD= -lncurses
+.endif
.include <bsd.prog.mk>