[lttng-dev] [PATCH ust] Add missing --record in Python's Makefile

Simon Marchi simon.marchi at polymtl.ca
Wed Oct 14 01:34:36 EDT 2015


I believe this is missing.  Fixes this error when doing

  $ make install DESTDIR=/tmp/lttng-ust2

make[1]: Entering directory '/home/simark/src/lttng-ust/liblttng-ust-python-agent'
if [ "/tmp/lttng-ust2" = "" ]; then \
	/usr/bin/python setup.py install --prefix=/tmp/lttng-ust --record install_files.txt  --verbose --no-compile ;  \
else \
	/usr/bin/python setup.py install --root=/tmp/lttng-ust2 --verbose install_files.txt  --prefix=/tmp/lttng-ust --no-compile ; \
fi
invalid command name 'install_files.txt'
Makefile:713: recipe for target 'install-exec-local' failed
make[1]: *** [install-exec-local] Error 1
make[1]: Leaving directory '/home/simark/src/lttng-ust/liblttng-ust-python-agent'
Makefile:594: recipe for target 'install-am' failed
make: *** [install-am] Error 2

Signed-off-by: Simon Marchi <simon.marchi at polymtl.ca>
---
 liblttng-ust-python-agent/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/liblttng-ust-python-agent/Makefile.am b/liblttng-ust-python-agent/Makefile.am
index f80b8a3..8bac3fb 100644
--- a/liblttng-ust-python-agent/Makefile.am
+++ b/liblttng-ust-python-agent/Makefile.am
@@ -18,7 +18,7 @@ install-exec-local:
 	if [ "$(DESTDIR)" = "" ]; then \
 		$(PYTHON) setup.py install --prefix=$(prefix) --record install_files.txt  --verbose --no-compile $(DISTSETUPOPTS);  \
 	else \
-		$(PYTHON) setup.py install --root=$(DESTDIR) --verbose install_files.txt  --prefix=$(prefix) --no-compile $(DISTSETUPOPTS); \
+		$(PYTHON) setup.py install --root=$(DESTDIR) --verbose --record install_files.txt  --prefix=$(prefix) --no-compile $(DISTSETUPOPTS); \
 	fi
 clean-local:
 	rm -rf build
-- 
2.6.1




More information about the lttng-dev mailing list