summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolis Ragkousis <manolis837@gmail.com>2017-01-25 18:33:29 +0200
committerEric Blake <eblake@redhat.com>2017-01-25 10:55:48 -0600
commitc974f835a52706c05444fcdd229f4fc670c76f47 (patch)
tree11da5a81cd9c214236e07e91acf922f6e1ae196a
parent9f888b75c08e0e77edc85982c0354a2fae7a12de (diff)
downloadcoreutils-c974f835a52706c05444fcdd229f4fc670c76f47.tar.xz
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
-rw-r--r--src/local.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/local.mk b/src/local.mk
index 86d0d8e22..5b25fcb87 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