From owner-svn-src-projects@freebsd.org Sat Sep 10 16:08:51 2016 Return-Path: Delivered-To: svn-src-projects@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 4D604BD415B for ; Sat, 10 Sep 2016 16:08:51 +0000 (UTC) (envelope-from dim@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 1E9A5C6; Sat, 10 Sep 2016 16:08:51 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8AG8ot6005502; Sat, 10 Sep 2016 16:08:50 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8AG8oMQ005501; Sat, 10 Sep 2016 16:08:50 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201609101608.u8AG8oMQ005501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 10 Sep 2016 16:08:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r305682 - projects/clang390-import/usr.bin/clang/lld X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Sep 2016 16:08:51 -0000 Author: dim Date: Sat Sep 10 16:08:50 2016 New Revision: 305682 URL: https://svnweb.freebsd.org/changeset/base/305682 Log: Fix sneaky typo in lld's Makefile: s/OBJOP/OBJTOP/ Modified: projects/clang390-import/usr.bin/clang/lld/Makefile Modified: projects/clang390-import/usr.bin/clang/lld/Makefile ============================================================================== --- projects/clang390-import/usr.bin/clang/lld/Makefile Sat Sep 10 15:44:00 2016 (r305681) +++ projects/clang390-import/usr.bin/clang/lld/Makefile Sat Sep 10 16:08:50 2016 (r305682) @@ -47,7 +47,7 @@ SRCS+= tools/lld/lld.cpp LIBDEPS+= llvm .for lib in ${LIBDEPS} -DPADD+= ${OBJOP}/lib/clang/lib${lib}/lib${lib}.a +DPADD+= ${OBJTOP}/lib/clang/lib${lib}/lib${lib}.a LDADD+= ${OBJTOP}/lib/clang/lib${lib}/lib${lib}.a .endfor