From owner-svn-ports-head@freebsd.org Tue May 24 13:17:38 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35AA2B484E8; Tue, 24 May 2016 13:17:38 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 063281A06; Tue, 24 May 2016 13:17:37 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4ODHb59088348; Tue, 24 May 2016 13:17:37 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4ODHbj7088347; Tue, 24 May 2016 13:17:37 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201605241317.u4ODHbj7088347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 24 May 2016 13:17:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415786 - head/games/libretro-cores 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.22 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, 24 May 2016 13:17:38 -0000 Author: mat Date: Tue May 24 13:17:36 2016 New Revision: 415786 URL: https://svnweb.freebsd.org/changeset/ports/415786 Log: Fix my previous fix. Reported by: marino Sponsored by: Absolight Modified: head/games/libretro-cores/Makefile Modified: head/games/libretro-cores/Makefile ============================================================================== --- head/games/libretro-cores/Makefile Tue May 24 13:15:40 2016 (r415785) +++ head/games/libretro-cores/Makefile Tue May 24 13:17:36 2016 (r415786) @@ -118,8 +118,8 @@ post-patch: do-build: @for dir in ${CORE_DIRS}; do \ - ${ECHO_MSG} "===> Building for ${PKGNAME}: core ${dir} ($$(date))"; \ - cd ${WRKSRC}/${dir}; \ + ${ECHO_MSG} "===> Building for ${PKGNAME}: core $${dir} ($$(date))"; \ + cd ${WRKSRC}/$${dir}; \ if [ -f Makefile.freebsd ]; then \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} Makefile.freebsd ${_MAKE_JOBS} ${MAKE_ARGS}; \ elif [ -f Makefile.libretro ]; then \ @@ -132,7 +132,7 @@ do-build: do-install: @${MKDIR} ${STAGEDIR}/${PREFIX}/libexec/libretro; @for dir in ${CORE_DIRS}; do \ - ${INSTALL_LIB} $$(find ${WRKSRC}/${dir}/ -name "*.so") ${STAGEDIR}/${PREFIX}/libexec/libretro); \ + ${INSTALL_LIB} $$(find ${WRKSRC}/$${dir}/ -name "*.so") ${STAGEDIR}/${PREFIX}/libexec/libretro; \ done; print-upstream-revisions: