From owner-svn-src-all@FreeBSD.ORG Fri Apr 19 05:01:15 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 87C66B47; Fri, 19 Apr 2013 05:01:15 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7AEA68C4; Fri, 19 Apr 2013 05:01:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3J51EiY056808; Fri, 19 Apr 2013 05:01:14 GMT (envelope-from kientzle@svn.freebsd.org) Received: (from kientzle@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3J51Eo5056807; Fri, 19 Apr 2013 05:01:14 GMT (envelope-from kientzle@svn.freebsd.org) Message-Id: <201304190501.r3J51Eo5056807@svn.freebsd.org> From: Tim Kientzle Date: Fri, 19 Apr 2013 05:01:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249633 - head/lib X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Apr 2013 05:01:15 -0000 Author: kientzle Date: Fri Apr 19 05:01:14 2013 New Revision: 249633 URL: http://svnweb.freebsd.org/changeset/base/249633 Log: Fix the symlink creation from r249484 so that repeated installs work correctly. Suggested by Tijl Coosemans. Modified: head/lib/Makefile Modified: head/lib/Makefile ============================================================================== --- head/lib/Makefile Fri Apr 19 03:55:54 2013 (r249632) +++ head/lib/Makefile Fri Apr 19 05:01:14 2013 (r249633) @@ -253,6 +253,6 @@ _libusb= libusb .endif afterinstall: - ln -fs ../include ${DESTDIR}/usr/lib/include + ln -fs ../include ${DESTDIR}/usr/lib/ .include