mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
sys-fs/fatsort: fix VariableScope (D) in src_compile
Not defined, but looks like we can drop it safely without any further workarounds. Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
@@ -17,13 +17,14 @@ src_prepare() {
|
||||
default
|
||||
|
||||
sed -i -e 's|/usr/local|/usr|g' \
|
||||
$(find ./ -name Makefile) || die
|
||||
$(find ./ -name Makefile || die) || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC=$(tc-getCC) LD=$(tc-getCC) \
|
||||
emake \
|
||||
CC=$(tc-getCC) LD=$(tc-getCC) \
|
||||
CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
|
||||
DESTDIR="${D}" man
|
||||
man
|
||||
}
|
||||
|
||||
src_test() {
|
||||
|
||||
Reference in New Issue
Block a user