diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-07-24 01:44:17 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-07-24 01:44:17 +0000 |
commit | 3fc7894a0e58c12ccf0fc9919357b3e602f91b3b (patch) | |
tree | c076bec2f9d643e3b98bafb2d846b37865f07e9f /usr.bin/chflags | |
parent | 09298b57cf9c36af196592c8eb0515929c3aa697 (diff) | |
download | FreeBSD-src-3fc7894a0e58c12ccf0fc9919357b3e602f91b3b.zip FreeBSD-src-3fc7894a0e58c12ccf0fc9919357b3e602f91b3b.tar.gz |
Set NOSHARED=true, having this binary static makes it much easier to
fix /usr/lib/*.so problems.
Submitted by: davidg
Diffstat (limited to 'usr.bin/chflags')
-rw-r--r-- | usr.bin/chflags/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/chflags/Makefile b/usr.bin/chflags/Makefile index a432e5f..875dc98 100644 --- a/usr.bin/chflags/Makefile +++ b/usr.bin/chflags/Makefile @@ -1,5 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +NOSHARED= true + PROG= chflags SRCS= chflags.c stat_flags.c .PATH: ${.CURDIR}/../../bin/ls |