Merge pull request #110 from stikonas/indentation

Fix indentation.
This commit is contained in:
Andrius Štikonas 2021-04-21 20:34:04 +01:00 committed by GitHub
commit 31caabdeef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -119,7 +119,7 @@ src_configure() {
--disable-64-bit-bfd \
--prefix="${PREFIX}" \
--libdir="${PREFIX}/lib/musl" \
--srcdir=.
--srcdir=.
cd ..
done
}
@ -127,12 +127,12 @@ src_configure() {
src_compile() {
make -C bfd headers
for dir in libiberty bfd opcodes binutils gas gprof ld; do
make -C $dir MAKEINFO=true
make -C $dir MAKEINFO=true
done
}
src_install() {
for dir in libiberty bfd opcodes binutils gas gprof ld; do
make -C $dir install MAKEINFO=true DESTDIR="${DESTDIR}"
make -C $dir install MAKEINFO=true DESTDIR="${DESTDIR}"
done
}