diff options
author | jkh <jkh@FreeBSD.org> | 1997-01-21 18:16:02 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-01-21 18:16:02 +0000 |
commit | acb5565ffeb09a56e3eddfee7f5aed8678e3b4cd (patch) | |
tree | 46ad6d7ae667d145c7dc47a26ee3816374c3e542 /gnu | |
parent | afa32c5ae84272935070680cd64b0c9e5524a948 (diff) | |
download | FreeBSD-src-acb5565ffeb09a56e3eddfee7f5aed8678e3b4cd.zip FreeBSD-src-acb5565ffeb09a56e3eddfee7f5aed8678e3b4cd.tar.gz |
Remove incorrect use of double-negative since it means the same thing
to make but perhaps not to the human reading it.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_int/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index a28ff0c..0bb7ca0 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -18,8 +18,8 @@ SRCS= bc-emit.c bc-optab.c \ ${OUT_FILE} LIB= cc_int -NOPROFILE= no thanks -NOPIC= no thanks +NOPROFILE= YES +NOPIC= YES install: @true |