From f7867154129781ee1522344bef50890c01f2b47a Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 27 Jun 2012 21:21:18 +0300 Subject: Fix install program detection configure handles INSTALL as a substitution variable specially, and apparently it gets confused when it's set to empty. Use INSTALL_ instead as a workaround to avoid the issue. --- src/Makefile.global.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 97dea8a0581..1e61e73b0df 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -290,7 +290,7 @@ BZIP2 = bzip2 # Installation. install_sh = $(SHELL) $(top_srcdir)/config/install-sh -c -INSTALL = $(if $(use_install_sh),$(install_sh),$(or @INSTALL@,$(install_sh))) +INSTALL = $(if $(use_install_sh),$(install_sh),$(or @INSTALL_@,$(install_sh))) INSTALL_SCRIPT_MODE = 755 INSTALL_DATA_MODE = 644 -- cgit v1.2.3