From owner-cvs-ports@FreeBSD.ORG Sun Nov 26 20:37:09 2006 Return-Path: X-Original-To: cvs-ports@freebsd.org Delivered-To: cvs-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B5F016A50C for ; Sun, 26 Nov 2006 20:37:09 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4344D43E10 for ; Sun, 26 Nov 2006 20:17:45 +0000 (GMT) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so917637uge for ; Sun, 26 Nov 2006 12:18:37 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type; b=fNy7snyK99908qUODpa3KEJKvz+cJNVwYXxruUjTwCcVYFXWyKJ4Le8KZI4l/dV2Kt9D5fbO15f73Gj/rqTBG/L+bbMaUefWt5Rp8RqRqnNpynfFy6WhI71cHx1dSYBc4D2QzK8V4TYrmo979LCjfJQAssMiWcIIub/iO/kDCcw= Received: by 10.66.232.9 with SMTP id e9mr11091540ugh.1164572316891; Sun, 26 Nov 2006 12:18:36 -0800 (PST) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.google.com with ESMTP id y7sm17876222ugc.2006.11.26.12.18.35; Sun, 26 Nov 2006 12:18:36 -0800 (PST) Message-ID: <4569F699.6070206@gmail.com> Date: Sun, 26 Nov 2006 21:18:33 +0100 From: Pawel Worach User-Agent: Thunderbird 2.0b1pre (X11/20061125) MIME-Version: 1.0 To: Dirk Meyer References: <200611261950.kAQJoU75021872@repoman.freebsd.org> In-Reply-To: <200611261950.kAQJoU75021872@repoman.freebsd.org> Content-Type: multipart/mixed; boundary="------------090603090303020800070306" Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/deskutils/abacus Makefile X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Nov 2006 20:37:09 -0000 This is a multi-part message in MIME format. --------------090603090303020800070306 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Dirk Meyer wrote: > dinoex 2006-11-26 19:50:30 UTC > > FreeBSD ports repository > > Modified files: > deskutils/abacus Makefile > Log: > - pass LDFLAGS to Makefile > > Revision Changes Path > 1.27 +1 -0 ports/deskutils/abacus/Makefile > The first assignment of MAKE_ENV had a missing 'D' in LDFLAGS so maybe this will work? -- Pawel --------------090603090303020800070306 Content-Type: text/x-patch; name="abacus.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="abacus.diff" --- Makefile.orig Sun Nov 26 21:16:12 2006 +++ Makefile Sun Nov 26 21:16:41 2006 @@ -23,10 +23,9 @@ USE_XLIB= yes USE_GMAKE= yes -MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS} -Wno-deprecated" LFLAGS="${LDFLAGS}" +MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS} -Wno-deprecated" LDFLAGS="${LDFLAGS}" LDFLAGS+= -L$(X11BASE)/lib -L$(LOCALBASE)/lib ALL_TARGET= dep tcl_interf/nxlc -MAKE_ENV+= LDFLAGS="${LDFLAGS}" MAN1= abacus.1 --------------090603090303020800070306--