From owner-svn-ports-head@freebsd.org Thu Dec 31 20:48:05 2015 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 39F0AA56AFD; Thu, 31 Dec 2015 20:48:05 +0000 (UTC) (envelope-from riggs@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 0AD14100C; Thu, 31 Dec 2015 20:48:04 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBVKm46x043477; Thu, 31 Dec 2015 20:48:04 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBVKm4El043476; Thu, 31 Dec 2015 20:48:04 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201512312048.tBVKm4El043476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 31 Dec 2015 20:48:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404960 - head/games/ufoai-data 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.20 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: Thu, 31 Dec 2015 20:48:05 -0000 Author: riggs Date: Thu Dec 31 20:48:03 2015 New Revision: 404960 URL: https://svnweb.freebsd.org/changeset/ports/404960 Log: Fix build failure PR: 205069 Submitted by: florian.ermisch@alumni.tu-berlin.de Reviewed by: m.tsatsenko@gmail.com (maintainer) Approved by: m.tsatsenko@gmail.com (maintainer) Modified: head/games/ufoai-data/Makefile Modified: head/games/ufoai-data/Makefile ============================================================================== --- head/games/ufoai-data/Makefile Thu Dec 31 19:01:05 2015 (r404959) +++ head/games/ufoai-data/Makefile Thu Dec 31 20:48:03 2015 (r404960) @@ -32,16 +32,16 @@ DATADIR= share/${PKGNAMEPREFIX:S/-//} PLIST= ${WRKDIR}/pkg-plist post-extract: - @cd ${WRKDIR}/base && \ - ${FIND} * -type f -exec ${UNZIP_CMD} "{}" -d ${WRKDIR}/base \; - @${RM} ${WRKDIR}/base/*.pk3 + @cd ${WRKSRC}/base && \ + ${FIND} * -type f -exec ${UNZIP_CMD} "{}" -d ${WRKSRC}/base \; + @${RM} ${WRKSRC}/base/*.pk3 pre-install: @${RM} -f ${PLIST} - @cd ${WRKDIR}/base && \ + @cd ${WRKSRC}/base && \ ${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/base/|' >> ${PLIST} do-install: - cd ${WRKDIR}/base && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${DATADIR}/base + cd ${WRKSRC}/base && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${DATADIR}/base .include