diff options
author | Alasdair G Kergon <agk@redhat.com> | 2013-07-24 21:52:39 +0100 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2013-07-24 21:52:39 +0100 |
commit | 462df8d89df2b87bbdb11c31b0b94523dea7aa28 (patch) | |
tree | e8d8098139f067850852bf2f759addcec3ccadda /python | |
parent | f5a205668b9965a7a2471d9e7cbcd3db49a495c7 (diff) | |
download | lvm2-462df8d89df2b87bbdb11c31b0b94523dea7aa28.tar.gz |
python: fix Makefile installation path
Use --prefix rather than --root.
(Needs more thorough investigation, but this seems to avoid /usr/usr
paths.)
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/Makefile.in b/python/Makefile.in index fd529b823..c9572d8fd 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -27,7 +27,7 @@ liblvm_python.c: include $(top_builddir)/make.tmpl install_python_bindings: python_bindings - $(PYTHON) setup.py install --skip-build --root $(DESTDIR)$(prefix) + $(PYTHON) setup.py install --skip-build --prefix $(prefix) install_lvm2: install_python_bindings |