From owner-svn-src-head@freebsd.org Sat Oct 7 23:33:16 2017 Return-Path: Delivered-To: svn-src-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 33008E44B47; Sat, 7 Oct 2017 23:33:16 +0000 (UTC) (envelope-from sbruno@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 B63C676FAD; Sat, 7 Oct 2017 23:33:15 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v97NXEMB044434; Sat, 7 Oct 2017 23:33:14 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v97NXE6E044433; Sat, 7 Oct 2017 23:33:14 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201710072333.v97NXE6E044433@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sat, 7 Oct 2017 23:33:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324406 - head/sys/modules/em X-SVN-Group: head X-SVN-Commit-Author: sbruno X-SVN-Commit-Paths: head/sys/modules/em X-SVN-Commit-Revision: 324406 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2017 23:33:16 -0000 Author: sbruno Date: Sat Oct 7 23:33:14 2017 New Revision: 324406 URL: https://svnweb.freebsd.org/changeset/base/324406 Log: Fix symlink if_igb.ko in -current such that its relative and doesn't end up with non-standard DESTDIR information in its symlink. This can happen very trivially if the release scripts are used. Sponsored by: Limelight Networks Modified: head/sys/modules/em/Makefile Modified: head/sys/modules/em/Makefile ============================================================================== --- head/sys/modules/em/Makefile Sat Oct 7 23:30:57 2017 (r324405) +++ head/sys/modules/em/Makefile Sat Oct 7 23:33:14 2017 (r324406) @@ -23,6 +23,6 @@ CFLAGS += -I${SRCTOP}/sys/dev/e1000 #CFLAGS += -DDEVICE_POLLING afterinstall: - ln -sf ${DESTDIR}${KMODDIR}/${KMOD}.ko ${DESTDIR}${KMODDIR}/if_igb.ko + cd ${DESTDIR}${KMODDIR} && ln -sf if_em.ko if_igb.ko .include