]> Sergey Matveev's repositories - nnn.git/commitdiff
Set CP in Makefile
authortanyaionova <isaqtm@gmail.com>
Wed, 26 Jun 2019 12:25:31 +0000 (15:25 +0300)
committertanyaionova <isaqtm@gmail.com>
Wed, 26 Jun 2019 12:25:31 +0000 (15:25 +0300)
$(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

Makefile

index c9d6af38d346b36d46b7b91bd60afed37b6331c6..a2d22dd58a32d490eb11a565262c874a6129af5d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ MANPREFIX ?= $(PREFIX)/share/man
 STRIP ?= strip
 PKG_CONFIG ?= pkg-config
 INSTALL ?= install
+CP ?= cp
 
 CFLAGS_OPTIMIZATION ?= -O3