Re: [ptxdist] How to upgrade CMake in ptxdist

2018-11-13 Thread Alexander Dahl
Hello Obaid, Am Montag, 12. November 2018, 20:48:30 CET schrieb Obaid Khan: > I wanted to update the host tool CMake for cross compiling a package OPC UA > with WAGO PFC. As I have CMake version in my ptxdist 2.8.8 and for > Open62541 I needed higher version. I faced following errors when I tried

Re: [ptxdist] [PATCH v2] Makefile: don't install .done, .gitignore and vim swap files

2018-11-13 Thread Uwe Kleine-König
Hello Roland, On Tue, Nov 13, 2018 at 09:10:56PM +0100, Roland Hieber wrote: > .gitignore is only resonable in git repositories, and we exclude .git/. s/resonable/reasonable/ Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux

[ptxdist] [PATCH] Makefile: don't install files .done and .gitignore

2018-11-13 Thread Roland Hieber
From: Roland Hieber .done is created by make all, and is an empty file. .gitignore is only resonable in git repositories, and we exclude .git/. Signed-off-by: Roland Hieber --- Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.in b/Makefile.in index

[ptxdist] [PATCH v2] Makefile: don't install .done, .gitignore and vim swap files

2018-11-13 Thread Roland Hieber
From: Roland Hieber .done is created by make all, and is an empty file. .gitignore is only resonable in git repositories, and we exclude .git/. vim swap files happen sometimes (e.g. when editing the makefile). Signed-off-by: Roland Hieber --- v1 -> v2: use the right filename for .gitignore,