From owner-svn-ports-head@freebsd.org Sat Jan 2 22:58:28 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 B31F2A5F21F; Sat, 2 Jan 2016 22:58:28 +0000 (UTC) (envelope-from rakuco@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 86F5F1564; Sat, 2 Jan 2016 22:58:28 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u02MwRhx044089; Sat, 2 Jan 2016 22:58:27 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u02MwRc5044088; Sat, 2 Jan 2016 22:58:27 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201601022258.u02MwRc5044088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 2 Jan 2016 22:58:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405098 - head/x11/antimicro 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: Sat, 02 Jan 2016 22:58:28 -0000 Author: rakuco Date: Sat Jan 2 22:58:27 2016 New Revision: 405098 URL: https://svnweb.freebsd.org/changeset/ports/405098 Log: Fix linking after r404875. There was a typo in the line setting LDFLAGS: we need -L/some/dir, not /some/dir. From the logs: /usr/local/lib: file not recognized: Is a directory c++: error: linker command failed with exit code 1 (use -v to see invocation) Thanks to antoine for raising the issue, and sorry for the brain fart. MFH: 2015Q4 Modified: head/x11/antimicro/Makefile Modified: head/x11/antimicro/Makefile ============================================================================== --- head/x11/antimicro/Makefile Sat Jan 2 22:17:23 2016 (r405097) +++ head/x11/antimicro/Makefile Sat Jan 2 22:58:27 2016 (r405098) @@ -16,7 +16,7 @@ GH_ACCOUNT= Ryochan7 # Upstream assumes ${LOCALBASE}/lib is part of the default linker path. Pull # request 268 fixes it for X11 libraries, but SDL2 is still using pkg-config # output (without full paths). -LDFLAGS+= ${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib USE_XORG= x11 xtst USE_QT5= linguisttools_build qmake_build buildtools_build widgets network