[ptxdist] [PATCH 3/3] ptxd_make_world_compile.sh: conditionally redirect stderr>stdout

2017-05-19 Thread jon
From: Jon Ringle I discovered after updating to a new version of ptxdist that all of my compile output including errors/warnings are now all going to stdout instead of having the errors/warning going to stderr. This is causing some problem when I use qtcreator as my IDE

[ptxdist] [PATCH 1/3] f2fs-tools: version bump 1.6.1 -> 1.8.0

2017-05-19 Thread jon
From: Jon Ringle Signed-off-by: Jon Ringle --- patches/f2fs-tools-1.6.1/autogen.sh | 1 - patches/f2fs-tools-1.8.0/autogen.sh | 1 + rules/f2fs-tools.make | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) delete mode 12

[ptxdist] [PATCH 2/3] host-qt4: Enable openssl

2017-05-19 Thread jon
From: Jon Ringle The build breaks if with a bunch of QSslSocket errors such as: undefined reference to `QSslSocket::staticMetaObject' Signed-off-by: Jon Ringle --- rules/host-qt4.in | 1 + rules/host-qt4.make | 1 - 2 files changed, 1

[ptxdist] [PATCH v2] ptxd_make_world_compile.sh: conditionally redirect stderr>stdout

2017-05-19 Thread jon
From: Jon Ringle I discovered after updating to a new version of ptxdist that all of my compile output including errors/warnings are now all going to stdout instead of having the errors/warning going to stderr. This is causing some problem when I use qtcreator as my IDE

[ptxdist] [PATCH] stress: add new package: workload generator for POSIX systems

2017-05-19 Thread Roland Hieber
--- Changes since v3: - use MAKEINFO=: in prepare stage instead of patching Makefiles - bring back section header for prepare stage Signed-off-by: Roland Hieber --- rules/stress.in | 9 rules/stress.make | 64

Re: [ptxdist] [PATCH v3] stress: add new package: workload generator for POSIX systems

2017-05-19 Thread Roland Hieber
On 18.05.2017 14:38, Michael Olbrich wrote: I looked a bit closer at the source. Add this to the rule and you should be able to drop the patch: STRESS_CONF_ENV := \ $(CROSS_ENV) \ MAKEINFO=: Oh yes, that is a much more elegant solution. - Roland