From 2350b6c4c79f162026c4b8518bbf47f48ab639c1 Mon Sep 17 00:00:00 2001 From: barner Date: Thu, 19 May 2005 16:56:20 +0000 Subject: Fix generation of suppression files: Valgrind puts parts of its output on stderr, so the redirection into a file did not work. Submitted by: Eugene Kilachkoff PR: ports/81249 --- devel/valgrind-snapshot/Makefile | 2 +- devel/valgrind/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'devel') diff --git a/devel/valgrind-snapshot/Makefile b/devel/valgrind-snapshot/Makefile index 8f346c859a8..2118d841834 100644 --- a/devel/valgrind-snapshot/Makefile +++ b/devel/valgrind-snapshot/Makefile @@ -84,7 +84,7 @@ post-install: .endif # Generate suppression files - @yes | ${PREFIX}/bin/valgrind --tool=memcheck --gen-suppressions=yes true \ + @yes | ${PREFIX}/bin/valgrind --tool=memcheck --gen-suppressions=yes true 2>&1 \ | ${SED} -e 's,.*{$$,{,' \ | ${GREP} -v '^=' \ > ${WRKDIR}/freebsd-default.supp || \ diff --git a/devel/valgrind/Makefile b/devel/valgrind/Makefile index b5000194027..1ace937bb0d 100644 --- a/devel/valgrind/Makefile +++ b/devel/valgrind/Makefile @@ -79,7 +79,7 @@ post-install: ${ECHO_CMD} !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! || true .endif - @yes | ${PREFIX}/bin/valgrind --tool=memcheck --gen-suppressions=yes true \ + @yes | ${PREFIX}/bin/valgrind --tool=memcheck --gen-suppressions=yes true 2>&1 \ | ${SED} -e 's,.*{$$,{,' \ | ${GREP} -v '^=' \ > ${WRKDIR}/freebsd-default.supp || \ -- cgit