diff options
author | joe <joe@FreeBSD.org> | 2000-06-05 02:25:55 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2000-06-05 02:25:55 +0000 |
commit | ed202d13d93202efb74e11f39508c7d882f7e0db (patch) | |
tree | c1621d8b76cf3dc280cf74ca4932d69989f59bb9 /bin/ls | |
parent | 6bddd8294aa4e9b7e4a66bff9c54de93da25168c (diff) | |
download | FreeBSD-src-ed202d13d93202efb74e11f39508c7d882f7e0db.zip FreeBSD-src-ed202d13d93202efb74e11f39508c7d882f7e0db.tar.gz |
Disable colour support in ls when building the fixit floppy, and make
a note of it in the release Makefile.
Diffstat (limited to 'bin/ls')
-rw-r--r-- | bin/ls/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ls/Makefile b/bin/ls/Makefile index 1607a4c..c20c8fe 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> |