diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-05-04 06:35:01 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-05-04 06:46:02 +0200 |
commit | ea564be9b0f9cbb30c1f0b49f4159d023851d9f5 (patch) | |
tree | ac97239a0641069dcb0ea0c739fe7012dda8c543 /x11-drivers/xf86-video-virtualbox | |
parent | net-misc/utelnetd: use #!/sbin/openrc-run instead of #!/sbin/runscript (diff) | |
download | gentoo-ea564be9b0f9cbb30c1f0b49f4159d023851d9f5.tar.gz gentoo-ea564be9b0f9cbb30c1f0b49f4159d023851d9f5.tar.bz2 gentoo-ea564be9b0f9cbb30c1f0b49f4159d023851d9f5.zip |
x11-drivers/xf86-video-virtualbox: Replaced "ln -sf" with "ln -s".
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'x11-drivers/xf86-video-virtualbox')
-rw-r--r-- | x11-drivers/xf86-video-virtualbox/xf86-video-virtualbox-5.0.20.ebuild | 7 |
1 files 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 5dbf6db32ea5..d3b72b40e0a0 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_ |