From: Manolis Ragkousis Date: Wed, 25 Jan 2017 16:33:29 +0000 (+0200) Subject: build: Properly expand cu_install_program when cross-compiling X-Git-Tag: v8.27~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c974f835a52706c05444fcdd229f4fc670c76f47;p=thirdparty%2Fcoreutils.git build: Properly expand cu_install_program when cross-compiling * src/local.mk (cu_install_program): Replace @INSTALL_PROGRAM@ with @INSTALL@ when cross-compiling; missed in commit 477a1e8e. Message-Id: <20170125163329.5690-1-manolis837@gmail.com> Copyright-paperwork-exempt: Yes --- diff --git a/src/local.mk b/src/local.mk index 86d0d8e226..5b25fcb873 100644 --- a/src/local.mk +++ b/src/local.mk @@ -645,7 +645,7 @@ check-duplicate-no-install: src/tr # Use the just-built 'ginstall', when not cross-compiling. if CROSS_COMPILING -cu_install_program = @INSTALL_PROGRAM@ +cu_install_program = @INSTALL@ else cu_install_program = src/ginstall endif