From owner-svn-ports-head@FreeBSD.ORG Tue Dec 17 16:01:40 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F50B4E8; Tue, 17 Dec 2013 16:01:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4CAD11EE; Tue, 17 Dec 2013 16:01:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBHG1daX036113; Tue, 17 Dec 2013 16:01:39 GMT (envelope-from naddy@svn.freebsd.org) Received: (from naddy@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBHG1c8l036105; Tue, 17 Dec 2013 16:01:38 GMT (envelope-from naddy@svn.freebsd.org) Message-Id: <201312171601.rBHG1c8l036105@svn.freebsd.org> From: Christian Weisgerber Date: Tue, 17 Dec 2013 16:01:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336736 - in head: archivers/gcpio archivers/gtar audio/flac audio/libogg audio/libvorbis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Dec 2013 16:01:40 -0000 Author: naddy Date: Tue Dec 17 16:01:38 2013 New Revision: 336736 URL: http://svnweb.freebsd.org/changeset/ports/336736 Log: Use MAKE_CMD to run regression tests. Modified: head/archivers/gcpio/Makefile head/archivers/gtar/Makefile head/audio/flac/Makefile head/audio/libogg/Makefile head/audio/libvorbis/Makefile Modified: head/archivers/gcpio/Makefile ============================================================================== --- head/archivers/gcpio/Makefile Tue Dec 17 15:57:48 2013 (r336735) +++ head/archivers/gcpio/Makefile Tue Dec 17 16:01:38 2013 (r336736) @@ -26,6 +26,6 @@ NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls regression-test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check .include Modified: head/archivers/gtar/Makefile ============================================================================== --- head/archivers/gtar/Makefile Tue Dec 17 15:57:48 2013 (r336735) +++ head/archivers/gtar/Makefile Tue Dec 17 16:01:38 2013 (r336736) @@ -45,6 +45,6 @@ STATIC_ARGS= lib .endif regression-test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check .include Modified: head/audio/flac/Makefile ============================================================================== --- head/audio/flac/Makefile Tue Dec 17 15:57:48 2013 (r336735) +++ head/audio/flac/Makefile Tue Dec 17 16:01:38 2013 (r336736) @@ -45,6 +45,6 @@ post-build: ${REINPLACE_CMD} 's:%%PREFIX%%:${PREFIX}:' ${WRKSRC}/man/flac.1 regression-test: build - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} check + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check .include Modified: head/audio/libogg/Makefile ============================================================================== --- head/audio/libogg/Makefile Tue Dec 17 15:57:48 2013 (r336735) +++ head/audio/libogg/Makefile Tue Dec 17 16:01:38 2013 (r336736) @@ -18,6 +18,6 @@ GNU_CONFIGURE= yes OPTIONS_DEFINE= DOCS regression-test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check .include Modified: head/audio/libvorbis/Makefile ============================================================================== --- head/audio/libvorbis/Makefile Tue Dec 17 15:57:48 2013 (r336735) +++ head/audio/libvorbis/Makefile Tue Dec 17 16:01:38 2013 (r336736) @@ -25,6 +25,6 @@ CONFIGURE_ARGS= --with-ogg=${LOCALBASE} OPTIONS_DEFINE= DOCS regression-test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check .include