diff options
author | ru <ru@FreeBSD.org> | 2003-10-03 20:47:37 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-10-03 20:47:37 +0000 |
commit | ae6ec1960e5d38afdbf05f3e3842cf73db31ff55 (patch) | |
tree | 97789f8145ffb3df4f78559926460d8a6fdc0f36 /share | |
parent | 778cfc9c75fd3d76a256fe8c100177637cab2b65 (diff) | |
download | FreeBSD-src-ae6ec1960e5d38afdbf05f3e3842cf73db31ff55.zip FreeBSD-src-ae6ec1960e5d38afdbf05f3e3842cf73db31ff55.tar.gz |
Removed the ancient .LIBS setting that causes non-existent
libraries to be reported as up-to-date.
Before:
# make -f /dev/null nonexistent.a
`nonexistent.a' is up to date.
After:
# make -f /dev/null nonexistent.a
make: don't know how to make nonexistent.a. Stop
PR: bin/44137 (part of)
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/sys.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/share/mk/sys.mk b/share/mk/sys.mk index af96dde..8c20c49 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -19,8 +19,6 @@ unix ?= We run FreeBSD, not UNIX. .SUFFIXES: .out .a .ln .o .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh .endif -.LIBS: .a - X11BASE ?= /usr/X11R6 AR ?= ar |