mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-23 04:49:06 +00:00
19 lines
308 B
Bash
19 lines
308 B
Bash
# Elfutils Phase 4
|
|
./configure --prefix=/usr \
|
|
--disable-debuginfod \
|
|
--enable-libdebuginfod=dummy
|
|
|
|
make
|
|
|
|
if $RUN_TESTS
|
|
then
|
|
set +e
|
|
make check
|
|
set -e
|
|
fi
|
|
|
|
make -C libelf install
|
|
install -m644 config/libelf.pc /usr/lib/pkgconfig
|
|
rm /usr/lib/libelf.a
|
|
|