]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
build: Properly expand cu_install_program when cross-compiling
authorManolis Ragkousis <manolis837@gmail.com>
Wed, 25 Jan 2017 16:33:29 +0000 (18:33 +0200)
committerEric Blake <eblake@redhat.com>
Wed, 25 Jan 2017 16:55:48 +0000 (10:55 -0600)
* 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

src/local.mk

index 86d0d8e226582f6f55e29f86f27489943ad3b700..5b25fcb87323669772e06bd56c3d0366742bc4f6 100644 (file)
@@ -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