diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-06-27 21:21:18 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-06-27 21:22:41 +0300 |
commit | f7867154129781ee1522344bef50890c01f2b47a (patch) | |
tree | 220d4c78f48ca136e25b856fb894362529bd8fb6 /src | |
parent | a8f97b39c70e831ced842eb7e41f810bee63e431 (diff) | |
download | postgresql-f7867154129781ee1522344bef50890c01f2b47a.tar.gz postgresql-f7867154129781ee1522344bef50890c01f2b47a.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |