Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Oct 2013 00:17:10 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330810 - head/Mk/Scripts
Message-ID:  <201310190017.r9J0HAbg020596@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat Oct 19 00:17:10 2013
New Revision: 330810
URL: http://svnweb.freebsd.org/changeset/ports/330810

Log:
  Recommand to use STRIP_CMD to strip binaries given that it will respect the WITH_DEBUG option

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Sat Oct 19 00:14:22 2013	(r330809)
+++ head/Mk/Scripts/qa.sh	Sat Oct 19 00:17:10 2013	(r330810)
@@ -66,7 +66,7 @@ stripped() {
 	for f in `find ${STAGEDIR} -type f`; do
 		output=`/usr/bin/file ${f}`
 		case "${output}" in
-		*:*\ ELF\ *,\ not\ stripped*) warn "${f} is not stripped";;
+		*:*\ ELF\ *,\ not\ stripped*) warn "${f} is not stripped consider using \${STRIP_CMD}";;
 		esac
 	done
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310190017.r9J0HAbg020596>