From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CB40F138222 for ; Wed, 4 May 2016 04:47:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 389F7224068; Wed, 4 May 2016 04:47:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4DB9224068 for ; Wed, 4 May 2016 04:47:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8D46340831 for ; Wed, 4 May 2016 04:47:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A758328 for ; Wed, 4 May 2016 04:47:36 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1462337162.ea564be9b0f9cbb30c1f0b49f4159d023851d9f5.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-virtualbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild X-VCS-Directories: x11-drivers/xf86-video-virtualbox/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: ea564be9b0f9cbb30c1f0b49f4159d023851d9f5 X-VCS-Branch: master Date: Wed, 4 May 2016 04:47:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: df10a691-7e8b-4b60-ba8a-c43784d22d40 X-Archives-Hash: 4c8617106cdb8783afd4e43985dd0aa8 commit: ea564be9b0f9cbb30c1f0b49f4159d023851d9f5 Author: Lars Wendler gentoo org> AuthorDate: Wed May 4 04:35:01 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed May 4 04:46:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea564be9 x11-drivers/xf86-video-virtualbox: Replaced "ln -sf" with "ln -s". Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> .../xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild index 5dbf6db..d3b72b4 100644 --- a/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild +++ b/x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild @@ -75,7 +75,7 @@ pkg_setup() { src_prepare() { # Prepare the vboxvideo_drm Makefiles and build dir eapply "${FILESDIR}"/${P}-Makefile.module.kms.patch - ln -sf Makefile.module.kms "${MODULES_SRC_DIR}"/Makefile || die + ln -s Makefile.module.kms "${MODULES_SRC_DIR}"/Makefile || die # All of these are expected to be in $(KBUILD_EXTMOD)/ so symlink them into place local incfile incfiles=( include @@ -84,7 +84,7 @@ src_prepare() { out/linux.${ARCH}/release/{product,version,revision}-generated.h ) for incfile in ${incfiles[@]} ; do - ln -sf "${S}"/${incfile} \ + ln -s "${S}"/${incfile} \ "${MODULES_SRC_DIR}"/${incfile##*/} || die done @@ -153,7 +153,8 @@ src_compile() { Runtime/common/alloc/heapoffset.o ) for each in ${targets[@]} ; do - ln -sf "${S}"/${objdir}/${each} "${MODULES_SRC_DIR}"/${each##*/} || die + ln -s "${S}"/${objdir}/${each} \ + "${MODULES_SRC_DIR}" || die done # Now creating the kernel modules. We must do this _after_