diff options
author | 2019-06-26 15:25:31 +0300 | |
---|---|---|
committer | 2019-06-26 15:25:31 +0300 | |
commit | e93abcf709858603d8123418309e4ad784c56416 (patch) | |
tree | bf658398f3872884d7a8b8940f2cd5f5b4245b9a | |
parent | a3019418b1ccd3064d983b419752261197cc1922 (diff) | |
download | nnn-e93abcf709858603d8123418309e4ad784c56416.tar.gz |
Set CP in Makefile
$(CP) is not set by GNU Make
Seems like [1] is a full list of what GNU Make defines implicitly
[1] https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ MANPREFIX ?= $(PREFIX)/share/man STRIP ?= strip PKG_CONFIG ?= pkg-config INSTALL ?= install +CP ?= cp CFLAGS_OPTIMIZATION ?= -O3 |