From owner-svn-ports-all@freebsd.org Fri Dec 8 18:56:10 2017 Return-Path: Delivered-To: svn-ports-all@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 1FBA1E8B56D; Fri, 8 Dec 2017 18:56:10 +0000 (UTC) (envelope-from tobik@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 DE5137ECF2; Fri, 8 Dec 2017 18:56:09 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB8Iu8ws068960; Fri, 8 Dec 2017 18:56:08 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB8Iu8hs068959; Fri, 8 Dec 2017 18:56:08 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201712081856.vB8Iu8hs068959@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 8 Dec 2017 18:56:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455794 - head/games/iortcw/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/games/iortcw/files X-SVN-Commit-Revision: 455794 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2017 18:56:10 -0000 Author: tobik Date: Fri Dec 8 18:56:08 2017 New Revision: 455794 URL: https://svnweb.freebsd.org/changeset/ports/455794 Log: games/iortcw: Fix build when PREFIX != LOCALBASE Modified: head/games/iortcw/files/Makefile Modified: head/games/iortcw/files/Makefile ============================================================================== --- head/games/iortcw/files/Makefile Fri Dec 8 18:44:07 2017 (r455793) +++ head/games/iortcw/files/Makefile Fri Dec 8 18:56:08 2017 (r455794) @@ -12,7 +12,7 @@ MAKE_ARGS= BUILD_CLIENT=1 \ USE_INTERNAL_SPEEX=0 \ USE_INTERNAL_ZLIB=0 \ USE_INTERNAL_JPEG=0 \ - CLIENT_LIBS+="-L${PREFIX}/lib -lSDL2 -lcurl -lopus" \ + CLIENT_LIBS+="-L${LOCALBASE}/lib -lSDL2 -lcurl -lopus" \ USE_INTERNAL_OGG=0 \ USE_INTERNAL_OPUS=0 \ USE_CODEC_VORBIS=0 \