blob: e8962085848663c28bce1532fc56a7e6433fa193 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
set -e
mkdir -v build
cd build || exit 1
../configure \
--prefix=/usr \
--build="$(../config.guess)" \
--host="${LFS_TGT}" \
--disable-nls \
--enable-shared \
--disable-werror \
--enable-64-bit-bfd &&
make &&
make DESTDIR="${LFS}" -j1 install &&
install -vm755 libctf/.libs/libctf.so.0.0.0 "${LFS}"/usr/lib
|